UNPKG

256 BJavaScriptView Raw
1"use strict";
2
3exports.__esModule = true;
4exports["default"] = endsWith;
5/**
6 * Check if a string ends with something
7 * @private
8 */
9function endsWith(string, suffix) {
10 return string.substr(-suffix.length) === suffix;
11}
12module.exports = exports.default;
\No newline at end of file