Skip to content

Commit 25a6f88

Browse files
mscdexaddaleax
authored andcommitted
doc: improve process.emitWarning() example
PR-URL: #9590 Reviewed-By: Roman Reiss <[email protected]> Reviewed-By: Prince John Wesley <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
1 parent 3b4ec5f commit 25a6f88

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

doc/api/process.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -821,11 +821,10 @@ so, it is recommended to place the `emitWarning()` behind a simple boolean
821821
flag as illustrated in the example below:
822822

823823
```js
824-
var warned = false;
825824
function emitMyWarning() {
826-
if (!warned) {
825+
if (!emitMyWarning.warned) {
826+
emitMyWarning.warned = true;
827827
process.emitWarning('Only warn once!');
828-
warned = true;
829828
}
830829
}
831830
emitMyWarning();

0 commit comments

Comments
 (0)