Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
rambda
/
src
/
isPromise.js
blob: 47c870fac92e44892b138772d4ea0af1d2cbc4aa [
file
] [
log
] [
blame
] [
edit
]
import
{
type
}
from
'./type.js'
export
function
isPromise
(
x
){
return
'Promise'
===
type
(
x
)
}