assert
Last updated
Last updated
• Docs
/ / assert
assert(
expression
,message
):asserts expression
Asserts that the expression passed to the function is truthy, otherwise throws a new Error with the provided message.
• expression: unknown
The expression to be asserted.
• message: string
The error message to be printed.
asserts expression