]> git.r.bdr.sh - rbdr/serpentity/blobdiff - lib/serpentity/component.js
Adapt eslint rules to use modules
[rbdr/serpentity] / lib / serpentity / component.js
index 707da7a6810e6c1bdd6b4818e0266d937515cc5d..32ae01fef6d408d82613f66ee3ef26f8007930a4 100644 (file)
@@ -1,5 +1,3 @@
-'use strict';
-
 /*
  * Components store data. Nothing to say here really, just
  * inherit and add a prototype, or don't even inherit, see?
@@ -7,11 +5,9 @@
  * components can be any class whatsoever.
  */
 
-const Component = class Component {
+export class Component {
   constructor(config) {
 
     Object.assign(this, config);
   }
-};
-
-module.exports = Component;
+}