UNPKG

@jonkemp/package-utils

Version:

Helper utility modules for collections, arrays, objects and more

8 lines (5 loc) 209 B
const getLength = require('./get-length'); module.exports = (collection) => { const length = getLength(collection); return typeof length == 'number' && length >= 0 && length <= Number.MAX_SAFE_INTEGER; };