CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
index.js11 linesDownload Raw Back to is-arrayish
1'use strict';2 3module.exports = function isArrayish(obj) {4	if (!obj) {5		return false;6	}7 8	return obj instanceof Array || Array.isArray(obj) ||9		(obj.length >= 0 && obj.splice instanceof Function);10};11 
basant307/AI_Governance_Project · CoolFace