assertthat
Version:
assertthat provides fluent TDD.
9 lines (8 loc) • 403 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.assertActualIsNotUndefined = void 0;
const assertAnyIsNotUndefined_1 = require("../../forAny/assertAnyIsNotUndefined");
const assertActualIsNotUndefined = function (actual) {
return (0, assertAnyIsNotUndefined_1.assertAnyIsNotUndefined)(actual);
};
exports.assertActualIsNotUndefined = assertActualIsNotUndefined;