Files
site/nova-components/NovaLeader/node_modules/es5-ext/string/#/ends-with/is-implemented.js
2025-04-21 16:03:20 +02:00

9 lines
201 B
JavaScript
Vendored

"use strict";
var str = "razdwatrzy";
module.exports = function () {
if (typeof str.endsWith !== "function") return false;
return str.endsWith("trzy") === true && str.endsWith("raz") === false;
};