mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 21:27:14 +00:00

PR-URL: https://github.com/nodejs/node/pull/20190 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
5 lines
147 B
JavaScript
5 lines
147 B
JavaScript
'use strict';
|
|
module.exports = 'npm_config_username' in process.env ||
|
|
'npm_package_name' in process.env ||
|
|
'npm_config_heading' in process.env;
|