UNPKG

assertthat

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