All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash.stubArray.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
/**
 * This method returns a new empty array.
 *
 * @static
 * @memberOf _
 * @since 4.13.0
 * @category Util
 * @returns {Array} Returns the new empty array.
 * @example
 *
 * var arrays = _.times(2, _.stubArray);
 *
 * console.log(arrays);
 * // => [[], []]
 *
 * console.log(arrays[0] === arrays[1]);
 * // => false
 */
function stubArray() {
  return [];
}

module.exports = stubArray;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy