UNPKG

assertthat

Version:
14 lines (11 loc) 327 B
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 };