diff options
Diffstat (limited to 'lib/components/configuration.js')
| -rw-r--r-- | lib/components/configuration.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/components/configuration.js b/lib/components/configuration.js new file mode 100644 index 0000000..ddb4a27 --- /dev/null +++ b/lib/components/configuration.js @@ -0,0 +1,9 @@ +import { Component } from '@serpentity/serpentity'; + +export default class Configuration extends Component { + constructor(config) { + + super(config); + this.lineLength = this.lineLength || 1000; + } +}; |