UNPKG

hapiest-server

Version:

A wrapper around Hapi.js with a configuration-first approach

16 lines (10 loc) 264 B
'use strict'; const VO = require('hapiest-vo'); class InertPluginConfig extends VO { constructor(config) { super(); this._addProperties(config); } get enabled() { return this.get('enabled'); } } module.exports = InertPluginConfig;