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