assertthat
Version:
assertthat provides fluent TDD.
14 lines (11 loc) • 327 B
text/typescript
import { assertAnyIsNotNull } from '../../forAny/assertAnyIsNotNull';
import { AssertionFailed } from '../../../errors';
import { Result } from 'defekt';
const assertActualIsNotNull = function (
actual: any
): Result<undefined, AssertionFailed> {
return assertAnyIsNotNull(actual);
};
export {
assertActualIsNotNull
};