## Usage ```js var endsWith = require('{%= name %}'); endsWith('abc', 'c'); //=> true endsWith(['a', 'b', 'c'], 'c'); //=> true endsWith(['abc', 'abc', 'abc'], 'c'); //=> false endsWith(['abc', 'abc', 'abc'], 'c'); //=> false endsWith(['a', 'b', 42], 42) //=> true endsWith(['a', 'b', 42], '42') //=> false ```