We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00bbe5d commit 405ea41Copy full SHA for 405ea41
src/content/docs/workers/runtime-apis/nodejs/util.mdx
@@ -41,7 +41,7 @@ async function foo(args) {
41
const callbackifiedFoo = callbackify(foo);
42
43
callbackifiedFoo(args, (err, value) => {
44
- If (err) throw err;
+ if (err) throw err;
45
});
46
```
47
0 commit comments