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