|
Last change
on this file since cdcff72 was 9af201e, checked in by MBK <marija.karapandzova@…>, 3 weeks ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
249 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | // workaround for tty output truncation upon process.exit()
|
|---|
| 2 | // https://github.com/nodejs/node/issues/6456
|
|---|
| 3 |
|
|---|
| 4 | [process.stdout, process.stderr].forEach((s) => {
|
|---|
| 5 | s && s.isTTY && s._handle && s._handle.setBlocking &&
|
|---|
| 6 | s._handle.setBlocking(true)
|
|---|
| 7 | });
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.