UNPKG

242 BJavaScriptView Raw
1import isArray from './is-array';
2import isString from './is-string';
3function endsWith(arr, e) {
4 return (isArray(arr) || isString(arr)) ? arr[arr.length - 1] === e : false;
5}
6export default endsWith;
7//# sourceMappingURL=ends-with.js.map
\No newline at end of file