base-config-schema
Version:
Schema for the base-config plugin, used for normalizing config values before passing them to config.process().
29 lines (26 loc) • 543 B
JavaScript
;
/**
* Disable one or more options. This is the API-equivalent of
* calling `app.disable('foo')`, or `app.option('foo', false)`.
*
* ```js
* {disable: 'foo'}
* // or
* {disable: ['foo', 'bar']}
* ```
* @name disable
* @api public
*/
module.exports = function(app, base, options) {
return function(val, key, config, schema) {
if (typeof val === 'string') {
val = [val];
}
if (Array.isArray(val)) {
val.forEach(function(key) {
app.disable(key);
});
}
return val;
};
};