uni-ticket-system/node_modules/core-js/internals/length-of-array-like.js
2023-12-05 10:11:10 +08:00

8 lines
211 B
JavaScript

var toLength = require('../internals/to-length');
// `LengthOfArrayLike` abstract operation
// https://tc39.es/ecma262/#sec-lengthofarraylike
module.exports = function (obj) {
return toLength(obj.length);
};