| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 7186e02 commit 9c26c0f
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1666,7 +1666,9 @@ each [`Worker`][] thread has its own copy of `process.env`, based on its | |||
| 1666 | 1666 | parent thread's `process.env`, or whatever was specified as the `env` option | |
| 1667 | 1667 | to the [`Worker`][] constructor. Changes to `process.env` will not be visible | |
| 1668 | 1668 | across [`Worker`][] threads, and only the main thread can make changes that | |
| 1669 | - are visible to the operating system or to native add-ons. | ||
| 1669 | + are visible to the operating system or to native add-ons. On Windows, a copy of | ||
| 1670 | + `process.env` on a [`Worker`][] instance operates in a case-sensitive manner | ||
| 1671 | + unlike the main thread. | ||
| 1670 | 1672 | ||
| 1671 | 1673 | ## `process.execArgv` | |
| 1672 | 1674 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -850,7 +850,8 @@ Notable differences inside a Worker environment are: | |||
| 850 | 850 | unless otherwise specified. Changes to one copy are not visible in other | |
| 851 | 851 | threads, and are not visible to native add-ons (unless | |
| 852 | 852 | [`worker.SHARE_ENV`][] is passed as the `env` option to the | |
| 853 | - [`Worker`][] constructor). | ||
| 853 | + [`Worker`][] constructor). On Windows, unlike the main thread, a copy of the | ||
| 854 | + environment variables operates in a case-sensitive manner. | ||
| 854 | 855 | * [`process.title`][] cannot be modified. | |
| 855 | 856 | * Signals are not delivered through [`process.on('...')`][Signals events]. | |
| 856 | 857 | * Execution may stop at any point as a result of [`worker.terminate()`][] | |
| Back | FazBrowse Home | New Git URL |
0 commit comments