quote-api / utils /image-load-path.js
rippanteq7's picture
Upload folder using huggingface_hub
0dcf096 verified
raw
history blame contribute delete
175 Bytes
const fs = require('fs')
module.exports = (path) => {
return new Promise((resolve, reject) => {
fs.readFile(path, (_error, data) => {
resolve(data)
})
})
}