UNPKG

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