]> gerrit.simantics Code Review - simantics/district.git/blob - lib/get.js
Hide "enabled" column for non-component type tech type tables
[simantics/district.git] / lib / get.js
1
2 module.exports = get
3
4 get.usage = "npm get <key> <value> (See `npm config`)"
5
6 var npm = require("./npm.js")
7
8 get.completion = npm.commands.config.completion
9
10 function get (args, cb) {
11   npm.commands.config(["get"].concat(args), cb)
12 }