FLUJOS/VISUALIZACION/node_modules/polished/lib/internalHelpers/_endsWith.js
2025-11-07 00:06:12 +01:00

12 lines
No EOL
256 B
JavaScript
Executable file

"use strict";
exports.__esModule = true;
exports["default"] = endsWith;
/**
* Check if a string ends with something
* @private
*/
function endsWith(string, suffix) {
return string.substr(-suffix.length) === suffix;
}
module.exports = exports.default;