_.endsWith(检测结尾字符串)
_.endsWith([string=''], [target], [position=string.length])_.endsWith('abc', 'c');
// => true
_.endsWith('abc', 'b');
// => false
_.endsWith('abc', 'b', 2);
// => trueLast updated
_.endsWith([string=''], [target], [position=string.length])_.endsWith('abc', 'c');
// => true
_.endsWith('abc', 'b');
// => false
_.endsWith('abc', 'b', 2);
// => trueLast updated