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