UNPKG

assertthat

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