CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
isFile.js15 linesDownload Raw Back to predicate
1'use strict';2 3Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });4 5const isBlob = require('./isBlob.js');6 7function isFile(x) {8    if (typeof File === 'undefined') {9        return false;10    }11    return isBlob.isBlob(x) && x instanceof File;12}13 14exports.isFile = isFile;15 
basant307/AI_Governance_Project · CoolFace