Wraps assertion and throws an error with message if assertion fails.
const stringWithMessage = expect( string, (_, v) => `Expected string, got ${typeof v}`); Copy
const stringWithMessage = expect( string, (_, v) => `Expected string, got ${typeof v}`);
Assertion to be checked.
Message to be used in error.
Wraps assertion and throws an error with message if assertion fails.
Example