Sign in
chromium
/
devtools
/
devtools-frontend
/
5dfb21679dc5d9affc8a50122a3e245ff69f1d08
/
.
/
node_modules
/
rambda
/
src
/
isPromise.js
blob: 47c870fac92e44892b138772d4ea0af1d2cbc4aa [
file
]
import
{
type
}
from
'./type.js'
export
function
isPromise
(
x
){
return
'Promise'
===
type
(
x
)
}