more work

This commit is contained in:
Dobie Wollert
2015-04-20 05:31:12 -04:00
parent 397b828024
commit 411ee25a5e
456 changed files with 37079 additions and 109 deletions

23
node_modules/lodash/internal/toIterable.js generated vendored Normal file
View File

@ -0,0 +1,23 @@
var getLength = require('./getLength'),
isLength = require('./isLength'),
isObject = require('../lang/isObject'),
values = require('../object/values');
/**
* Converts `value` to an array-like object if it is not one.
*
* @private
* @param {*} value The value to process.
* @returns {Array|Object} Returns the array-like object.
*/
function toIterable(value) {
if (value == null) {
return [];
}
if (!isLength(getLength(value))) {
return values(value);
}
return isObject(value) ? value : Object(value);
}
module.exports = toIterable;