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.
17 lines
541 B
17 lines
541 B
2 years ago
|
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
|