@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
14 lines • 367 B
JavaScript
;
/**
* Search string for trailing pattern
* @param {string} target
* @param {string} pattern
* @return boolean
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.endsWith = void 0;
const endsWith = (target, pattern) => {
return target.endsWith(pattern);
};
exports.endsWith = endsWith;
//# sourceMappingURL=endsWith.js.map