All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.cjs.size.js Maven / Gradle / Ivy

The newest version!
var _isArrayLike = require('./_isArrayLike.js');
var keys = require('./keys.js');

// Return the number of elements in a collection.
function size(obj) {
  if (obj == null) return 0;
  return _isArrayLike(obj) ? obj.length : keys(obj).length;
}

module.exports = size;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy