CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
index.js15 linesDownload Raw Back to prompts
1function isNodeLT(tar) {2  tar = (Array.isArray(tar) ? tar : tar.split('.')).map(Number);3  let i=0, src=process.versions.node.split('.').map(Number);4  for (; i < tar.length; i++) {5    if (src[i] > tar[i]) return false;6    if (tar[i] > src[i]) return true;7  }8  return false;9}10 11module.exports =12  isNodeLT('8.6.0')13    ? require('./dist/index.js')14    : require('./lib/index.js');15 
basant307/AI_Governance_Project · CoolFace