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