Sha256: 24b9f3ee9c3f6af687e08426b75855df09a4c9d2f297ff193351dfd73b51e2ca
Contents?: true
Size: 324 Bytes
Versions: 69
Compression:
Stored size: 324 Bytes
Contents
var toString = require('../lang/toString'); /** * Checks if string ends with specified suffix. */ function endsWith(str, suffix) { str = toString(str); suffix = toString(suffix); return str.indexOf(suffix, str.length - suffix.length) !== -1; } module.exports = endsWith;
Version data entries
69 entries across 69 versions & 2 rubygems