UNPKG

assertthat

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