UNPKG

assertthat

Version:
22 lines (18 loc) 505 B
import { AssertionFailed } from '../../errors'; import { dispel } from '../../dispel/dispel'; import { prettyPrint } from '../../prettyPrint/typeAware/prettyPrint'; import { error, Result, value } from 'defekt'; const assertAnyIsNotFalsy = function ( actual: any ): Result<undefined, AssertionFailed> { if (actual) { return value(); } return error(new AssertionFailed({ message: 'The value is falsy.', actual: prettyPrint(dispel(actual)) })); }; export { assertAnyIsNotFalsy };