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 6c738db commit 94342f2Copy full SHA for 94342f2
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