UNPKG

186 BJavaScriptView Raw
1import isArrayLike from './is-array-like';
2export default function head(o) {
3 if (isArrayLike(o)) {
4 return o[0];
5 }
6 return undefined;
7}
8//# sourceMappingURL=head.js.map
\No newline at end of file