UNPKG

lenye_base

Version:

基础方法

12 lines (9 loc) 245 B
'use strict'; /** * 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; } module.exports = endsWith;