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 7556473 commit 3db98d7Copy full SHA for 3db98d7
apps/site/pages/en/blog/community/domain-postmortem.md
@@ -20,21 +20,21 @@ the originator of the code from knowing about its own exceptions.
20
21
Here's an example of how one indirectly linked modules can affect another:
22
23
-```js displayName=a.js
+```js displayName="a.js"
24
const d = require('domain').create();
25
26
const b = require('./b');
27
const c = require('./c');
28
```
29
30
-```js displayName=b.js
+```js displayName="b.js"
31
d.on('error', () => {
32
/* silence everything */
33
});
34
d.enter();
35
36
37
-```js displayName=c.js
+```js displayName="c.js"
38
const dep = require('some-dep');
39
dep.method(); // Uh-oh! This method doesn't actually exist.
40
0 commit comments