UNPKG

@enonic/js-utils

Version:
8 lines (7 loc) 165 B
// string/endsWith.ts function endsWith(string, suffix) { return string.indexOf(suffix, string.length - suffix.length) !== -1; } export { endsWith as default };