Files
biomedjs/node_modules/lodash/internal/toIterable.js

24 lines
570 B
JavaScript
Raw Permalink Normal View History

2015-04-20 05:31:12 -04:00
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;