CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
isNodeLikeError.ts14 linesDownload Raw Back to utils
1export function isNodeLikeError(2  error: unknown3): error is NodeJS.ErrnoException {4  if (error == null) {5    return false6  }7 8  if (!(error instanceof Error)) {9    return false10  }11 12  return 'code' in error && 'errno' in error13}14 
basant307/AI_Governance_Project · CoolFace