Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
JammingJazz
/
quote-api
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c7cf0a3
quote-api
/
utils
/
image-load-path.js
akkun3704
Upload folder using huggingface_hub
5ae7e18
about 1 year 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)
})
})
}