"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var is_array_1 = require("./is-array"); var is_string_1 = require("./is-string"); function endsWith(arr, e) { return (is_array_1.default(arr) || is_string_1.default(arr)) ? arr[arr.length - 1] === e : false; } exports.default = endsWith; //# sourceMappingURL=ends-with.js.map