Sha256: dfcb9ea56cd5eabc53310907f48d67347b584a65e40009985ad8ebf26c13df1b

Contents?: true

Size: 527 Bytes

Versions: 153

Compression:

Stored size: 527 Bytes

Contents

var isArrayLike = require('./isArrayLike'),
    isObject = require('../lang/isObject'),
    values = require('../object/values');

/**
 * Converts `value` to an array-like object if it's 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 (!isArrayLike(value)) {
    return values(value);
  }
  return isObject(value) ? value : Object(value);
}

module.exports = toIterable;

Version data entries

153 entries across 80 versions & 8 rubygems

Version Path
trusty-festivity-extension-2.5.2 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.5.1 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.5.1 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.5.0 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.5.0 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.6 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.6 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.5 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.5 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.4 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.4 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.3 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.3 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.2 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.2 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.1 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.1 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.0 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.4.0 node_modules/bower/node_modules/inquirer/node_modules/lodash/internal/toIterable.js
trusty-festivity-extension-2.3.30 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/internal/toIterable.js