/** * @module 1-liners/tail * * @description * * Returns the tail of an array * * @example * * const tail = require('1-liners/tail'); * * tail([1, 2, 3]); // => [2, 3] * */ "use strict"; exports.__esModule = true; exports["default"] = function (_ref) { var tail = _ref.slice(1); return tail; }; module.exports = exports["default"];