qauMaWeb/node_modules/core-js/internals/length-of-array-like.js

8 lines
211 B
JavaScript
Raw Permalink Normal View History

2024-10-13 18:02:27 +08:00
var toLength = require('../internals/to-length');
// `LengthOfArrayLike` abstract operation
// https://tc39.es/ecma262/#sec-lengthofarraylike
module.exports = function (obj) {
return toLength(obj.length);
};