Skip to content

Commit 07c7c33

Browse files
committed
doc: use mjs/cjs blocks for callbackify null reason example
1 parent 3a53447 commit 07c7c33

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

doc/api/util.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,24 @@ wrapped function rejects a `Promise` with a falsy value as a reason, the value
7676
is wrapped in an `Error` with the original value stored in a field named
7777
`reason`.
7878

79-
```js
79+
```mjs
80+
import util from 'node:util';
81+
82+
function fn() {
83+
return Promise.reject(null);
84+
}
85+
const callbackFunction = util.callbackify(fn);
86+
87+
callbackFunction((err, ret) => {
88+
// When the Promise was rejected with `null` it is wrapped with an Error and
89+
// the original value is stored in `reason`.
90+
err && Object.hasOwn(err, 'reason') && err.reason === null; // true
91+
});
92+
```
93+
94+
```cjs
95+
const util = require('node:util');
96+
8097
function fn() {
8198
return Promise.reject(null);
8299
}

0 commit comments

Comments
 (0)