Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
xxsxx
/
cld
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
cld
/
node_modules
/
yargs
/
build
/
lib
/
utils
/
is-promise.js
xxsxx
Upload 436 files
14a2165
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
155 Bytes
export
function
isPromise
(
maybePromise
) {
return
(!!maybePromise &&
!!maybePromise.
then
&&
typeof
maybePromise.
then
===
'function'
);
}