CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
isArray.js27 linesDownload Raw Back to lodash-es
1/**2 * Checks if `value` is classified as an `Array` object.3 *4 * @static5 * @memberOf _6 * @since 0.1.07 * @category Lang8 * @param {*} value The value to check.9 * @returns {boolean} Returns `true` if `value` is an array, else `false`.10 * @example11 *12 * _.isArray([1, 2, 3]);13 * // => true14 *15 * _.isArray(document.body.children);16 * // => false17 *18 * _.isArray('abc');19 * // => false20 *21 * _.isArray(_.noop);22 * // => false23 */24var isArray = Array.isArray;25 26export default isArray;27 
basant307/AI_Governance_Project · CoolFace