import { Component } from '@serpentity/serpentity'; /** * Stores global behavior configuration that can be adjusted on the go. For * static configuration see lib/config.js instead. */ export default class Configuration extends Component { constructor(config) { super(config); this.lineLength = this.lineLength || 500; } };