Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mxmxk
/
quote-api
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b8cfb6b
quote-api
/
utils
/
image-load-path.js
rippanteq7
Upload folder using huggingface_hub
0dcf096
verified
8 months ago
raw
Copy download link
history
blame
Safe
175 Bytes
const
fs =
require
(
'fs'
)
module
.
exports
=
(
path
) =>
{
return
new
Promise
(
(
resolve, reject
) =>
{
fs.
readFile
(path,
(
_error, data
) =>
{
resolve
(data)
})
})
}