CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
isArrayLike.js10 linesDownload Raw Back to internal
1'use strict';2 3Object.defineProperty(exports, "__esModule", {4    value: true5});6exports.default = isArrayLike;7function isArrayLike(value) {8    return value && typeof value.length === 'number' && value.length >= 0 && value.length % 1 === 0;9}10module.exports = exports.default;
basant307/AI_Governance_Project · CoolFace