You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
233 B
7 lines
233 B
import isArray from './is-array';
|
|
import isString from './is-string';
|
|
function startsWith(arr, e) {
|
|
return isArray(arr) || isString(arr) ? arr[0] === e : false;
|
|
}
|
|
export default startsWith;
|
|
//# sourceMappingURL=starts-with.js.map
|