Lines Matching refs:env
183 let env;
184 if (typeof options.env === 'object' && options.env !== null) {
185 env = ObjectCreate(null);
187 ObjectEntries(options.env),
188 ({ 0: key, 1: value }) => { env[key] = `${value}`; },
190 } else if (options.env == null) {
191 env = process.env;
192 } else if (options.env !== SHARE_ENV) {
194 'options.env',
196 options.env);
208 env === process.env ? null : env,
219 this[kHandle].invalidNodeOptions, 'invalid NODE_OPTIONS env variable');