Skip to main content
Deno 2 is finally here ๐ŸŽ‰๏ธ
Learn more
Module

x/denops_std/function/vim/mod.ts>assert_false

๐Ÿ“š Standard module for denops.vim
Go to Latest
function assert_false
import { assert_false } from "https://deno.land/x/denops_std@v3.6.0/function/vim/mod.ts";

When {actual} is not false an error message is added to |v:errors|, like with |assert_equal()|. Also see |assert-return|. A value is false when it is zero. When {actual} is not a number the assert fails. When {msg} is omitted an error in the form "Expected False but got {actual}" is produced. Can also be used as a |method|: GetResult()->assert_false()

Parameters

denops: Denops
actual: unknown
optional
msg: unknown

Returns

Promise<unknown>