projecte_ionic/node_modules/core-js-pure/internals/length-of-array-like.js
2022-02-09 18:30:03 +01:00

8 lines
211 B
JavaScript
Executable file

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