10 lines
159 B
JavaScript
10 lines
159 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
function tail(arr) {
|
|
return arr.slice(1);
|
|
}
|
|
|
|
exports.tail = tail;
|