UNPKG

356 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var is_array_1 = require("./is-array");
4var is_string_1 = require("./is-string");
5function endsWith(arr, e) {
6 return (is_array_1.default(arr) || is_string_1.default(arr)) ? arr[arr.length - 1] === e : false;
7}
8exports.default = endsWith;
9//# sourceMappingURL=ends-with.js.map
\No newline at end of file