Sha256: e7b19fb71814896011eca364fc29122b800a06d518679242dae57e5982eb1802
Contents?: true
Size: 947 Bytes
Versions: 7
Compression:
Stored size: 947 Bytes
Contents
var kindOf = require('./kindOf'); var _win = this; /** * 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 === _win ) { //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
7 entries across 7 versions & 1 rubygems