You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
541 B
16 lines
541 B
let getPromiseValue = () => 'Promise{…}'
|
|
try {
|
|
const { getPromiseDetails, kPending, kRejected } = process.binding('util')
|
|
if (Array.isArray(getPromiseDetails(Promise.resolve()))) {
|
|
getPromiseValue = (value, options) => {
|
|
const [state, innerValue] = getPromiseDetails(value)
|
|
if (state === kPending) {
|
|
return 'Promise{<pending>}'
|
|
}
|
|
return `Promise${state === kRejected ? '!' : ''}{${options.inspect(innerValue, options)}}`
|
|
}
|
|
}
|
|
} catch (notNode) {
|
|
/* ignore */
|
|
}
|
|
export default getPromiseValue
|
|
|