| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 464e57f commit b74de21
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -96,7 +96,7 @@ const MAX_BUFFER = 1024 * 1024; | |||
| 96 | 96 | * @param {{ | |
| 97 | 97 | * cwd?: string; | |
| 98 | 98 | * detached?: boolean; | |
| 99 | - * env?: Object; | ||
| 99 | + * env?: object; | ||
| 100 | 100 | * execPath?: string; | |
| 101 | 101 | * execArgv?: string[]; | |
| 102 | 102 | * gid?: number; | |
@@ -202,7 +202,7 @@ function normalizeExecArgs(command, options, callback) { | |||
| 202 | 202 | * @param {string} command | |
| 203 | 203 | * @param {{ | |
| 204 | 204 | * cmd?: string; | |
| 205 | - * env?: Object; | ||
| 205 | + * env?: object; | ||
| 206 | 206 | * encoding?: string; | |
| 207 | 207 | * shell?: string; | |
| 208 | 208 | * signal?: AbortSignal; | |
@@ -256,7 +256,7 @@ ObjectDefineProperty(exec, promisify.custom, { | |||
| 256 | 256 | * @param {string[]} [args] | |
| 257 | 257 | * @param {{ | |
| 258 | 258 | * cwd?: string; | |
| 259 | - * env?: Object; | ||
| 259 | + * env?: object; | ||
| 260 | 260 | * encoding?: string; | |
| 261 | 261 | * timeout?: number; | |
| 262 | 262 | * maxBuffer?: number; | |
@@ -673,7 +673,7 @@ function abortChildProcess(child, killSignal) { | |||
| 673 | 673 | * @param {string[]} [args] | |
| 674 | 674 | * @param {{ | |
| 675 | 675 | * cwd?: string; | |
| 676 | - * env?: Object; | ||
| 676 | + * env?: object; | ||
| 677 | 677 | * argv0?: string; | |
| 678 | 678 | * stdio?: Array | string; | |
| 679 | 679 | * detached?: boolean; | |
@@ -746,7 +746,7 @@ function spawn(file, args, options) { | |||
| 746 | 746 | * input?: string | Buffer | TypedArray | DataView; | |
| 747 | 747 | * argv0?: string; | |
| 748 | 748 | * stdio?: string | Array; | |
| 749 | - * env?: Object; | ||
| 749 | + * env?: object; | ||
| 750 | 750 | * uid?: number; | |
| 751 | 751 | * gid?: number; | |
| 752 | 752 | * timeout?: number; | |
@@ -838,7 +838,7 @@ function checkExecSyncError(ret, args, cmd) { | |||
| 838 | 838 | * cwd?: string; | |
| 839 | 839 | * input?: string | Buffer | TypedArray | DataView; | |
| 840 | 840 | * stdio?: string | Array; | |
| 841 | - * env?: Object; | ||
| 841 | + * env?: object; | ||
| 842 | 842 | * uid?: number; | |
| 843 | 843 | * gid?: number; | |
| 844 | 844 | * timeout?: number; | |
@@ -875,7 +875,7 @@ function execFileSync(command, args, options) { | |||
| 875 | 875 | * cwd?: string; | |
| 876 | 876 | * input?: string | Buffer | TypedArray | DataView; | |
| 877 | 877 | * stdio?: string | Array; | |
| 878 | - * env?: Object; | ||
| 878 | + * env?: object; | ||
| 879 | 879 | * shell?: string; | |
| 880 | 880 | * uid?: number; | |
| 881 | 881 | * gid?: number; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2877,7 +2877,7 @@ function lazyLoadStreams() { | |||
| 2877 | 2877 | * start: number; | |
| 2878 | 2878 | * end?: number; | |
| 2879 | 2879 | * highWaterMark?: number; | |
| 2880 | - * fs?: Object | null; | ||
| 2880 | + * fs?: object | null; | ||
| 2881 | 2881 | * }} [options] | |
| 2882 | 2882 | * @returns {ReadStream} | |
| 2883 | 2883 | */ | |
@@ -2897,7 +2897,7 @@ function createReadStream(path, options) { | |||
| 2897 | 2897 | * autoClose?: boolean; | |
| 2898 | 2898 | * emitClose?: boolean; | |
| 2899 | 2899 | * start: number; | |
| 2900 | - * fs?: Object | null; | ||
| 2900 | + * fs?: object | null; | ||
| 2901 | 2901 | * }} [options] | |
| 2902 | 2902 | * @returns {WriteStream} | |
| 2903 | 2903 | */ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -362,7 +362,7 @@ function request(...args) { | |||
| 362 | 362 | * createConnection?: Function; | |
| 363 | 363 | * defaultPort?: number; | |
| 364 | 364 | * family?: number; | |
| 365 | - * headers?: Object; | ||
| 365 | + * headers?: object; | ||
| 366 | 366 | * hints?: number; | |
| 367 | 367 | * host?: string; | |
| 368 | 368 | * hostname?: string; | |
| Back | FazBrowse Home | New Git URL |
0 commit comments