1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-03 04:10:04 +02:00
Files
2022-08-20 18:51:33 +02:00

13 lines
235 B
JavaScript

module.exports = get
get.usage = "npm get <key> <value> (See `npm config`)"
var npm = require("./npm.js")
get.completion = npm.commands.config.completion
function get (args, cb) {
npm.commands.config(["get"].concat(args), cb)
}