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