CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
stubArray.js24 linesDownload Raw Back to lodash-es
1/**2 * This method returns a new empty array.3 *4 * @static5 * @memberOf _6 * @since 4.13.07 * @category Util8 * @returns {Array} Returns the new empty array.9 * @example10 *11 * var arrays = _.times(2, _.stubArray);12 *13 * console.log(arrays);14 * // => [[], []]15 *16 * console.log(arrays[0] === arrays[1]);17 * // => false18 */19function stubArray() {20  return [];21}22 23export default stubArray;24 
basant307/AI_Governance_Project · CoolFace