mirror of
https://github.com/nodejs/node.git
synced 2025-05-12 09:30:59 +00:00

PR-URL: https://github.com/nodejs/node/pull/40865 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
6 lines
145 B
JavaScript
6 lines
145 B
JavaScript
if (require.main === module) {
|
|
require('./lib/cli.js')(process)
|
|
} else {
|
|
throw new Error('The programmatic API was removed in npm v8.0.0')
|
|
}
|