Files
Shifted/node_modules/polished/lib/internalHelpers/_endsWith.js
2026-02-10 01:14:19 +00:00

12 lines
256 B
JavaScript

"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;