mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02: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>
5 lines
145 B
JavaScript
5 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')
|
|
}
|