Sha256: a5b23675214b89d56a3f69029339c17120ac8d894ade6311a15953079174e33c
Contents?: true
Size: 961 Bytes
Versions: 62
Compression:
Stored size: 961 Bytes
Contents
var kindOf = require('./kindOf'); var GLOBAL = require('./GLOBAL'); /** * Convert array-like object into array */ function toArray(val){ var ret = [], kind = kindOf(val), n; if (val != null) { if ( val.length == null || kind === 'String' || kind === 'Function' || kind === 'RegExp' || val === GLOBAL ) { //string, regexp, function have .length but user probably just want //to wrap value into an array.. ret[ret.length] = val; } else { //window returns true on isObject in IE7 and may have length //property. `typeof NodeList` returns `function` on Safari so //we can't use it (#58) n = val.length; while (n--) { ret[n] = val[n]; } } } return ret; } module.exports = toArray;
Version data entries
62 entries across 62 versions & 1 rubygems