assertthat
Version:
assertthat provides fluent TDD.
9 lines (8 loc) • 487 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.assertActualIsNotStartingWith = void 0;
const assertStringIsNotStartingWithString_1 = require("../../forStrings/assertStringIsNotStartingWithString");
const assertActualIsNotStartingWith = function (actual, expected) {
return (0, assertStringIsNotStartingWithString_1.assertStringIsNotStartingWithString)(actual, expected);
};
exports.assertActualIsNotStartingWith = assertActualIsNotStartingWith;