PR-URL: https://github.com/nodejs/node/pull/56274 Reviewed-By: Jordan Harband <ljharb@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
15 lines
309 B
JavaScript
15 lines
309 B
JavaScript
const { output } = require('proc-log')
|
|
const BaseCommand = require('../base-cmd.js')
|
|
|
|
class Prefix extends BaseCommand {
|
|
static description = 'Display prefix'
|
|
static name = 'prefix'
|
|
static params = ['global']
|
|
|
|
async exec () {
|
|
return output.standard(this.npm.prefix)
|
|
}
|
|
}
|
|
|
|
module.exports = Prefix
|