mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
8a03482cf1
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')
|
|
}
|