10 lines
153 B
JavaScript
10 lines
153 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
function head(arr) {
|
|
return arr[0];
|
|
}
|
|
|
|
exports.head = head;
|