Sha256: aa360eb1e4a58352b294cebaf6d4f231a8a8dc8facd93458482c157ea46e90a6
Contents?: true
Size: 442 Bytes
Versions: 19
Compression:
Stored size: 442 Bytes
Contents
var makeString = require('./helper/makeString'); var toPositive = require('./helper/toPositive'); module.exports = function endsWith(str, ends, position) { str = makeString(str); ends = '' + ends; if (typeof position == 'undefined') { position = str.length - ends.length; } else { position = Math.min(toPositive(position), str.length) - ends.length; } return position >= 0 && str.indexOf(ends, position) === position; };
Version data entries
19 entries across 19 versions & 1 rubygems