UNPKG

225 BJavaScriptView Raw
1'use strict';
2var toLength = require('../internals/to-length');
3
4// `LengthOfArrayLike` abstract operation
5// https://tc39.es/ecma262/#sec-lengthofarraylike
6module.exports = function (obj) {
7 return toLength(obj.length);
8};