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