UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

10 lines (8 loc) 226 B
/** * Item is the end of the target */ function endsWith(target, item, ignore) { var str = target.slice(-item.length); return ignore ? str.toLowerCase() === item.toLowerCase() : str === item; } export default endsWith;