UNPKG

hapiest-server

Version:

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

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