blob: 47c870fac92e44892b138772d4ea0af1d2cbc4aa [file] [log] [blame] [edit]
import { type } from './type.js'
export function isPromise(x){
return 'Promise' === type(x)
}