UNPKG

assertthat

Version:
14 lines (11 loc) 337 B
import { assertAnyIsNotTruthy } from '../../forAny/assertAnyIsNotTruthy'; import { AssertionFailed } from '../../../errors'; import { Result } from 'defekt'; const assertActualIsNotTruthy = function ( actual: any ): Result<undefined, AssertionFailed> { return assertAnyIsNotTruthy(actual); }; export { assertActualIsNotTruthy };