CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
index.js16 linesDownload Raw Back to simple-concat
1/*! simple-concat. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */2module.exports = function (stream, cb) {3  var chunks = []4  stream.on('data', function (chunk) {5    chunks.push(chunk)6  })7  stream.once('end', function () {8    if (cb) cb(null, Buffer.concat(chunks))9    cb = null10  })11  stream.once('error', function (err) {12    if (cb) cb(err)13    cb = null14  })15}16 
basant307/AI_Governance_Project · CoolFace