Skip to content

Instantly share code, notes, and snippets.

@brunops
Created October 26, 2015 01:22
Show Gist options
  • Save brunops/2aa55c262e369d3037be to your computer and use it in GitHub Desktop.
Save brunops/2aa55c262e369d3037be to your computer and use it in GitHub Desktop.
mapping classes
var map = require('./map');
new map['Test']();
// "hello from Test contructor"
module.exports = {
Test: require('./class-test')
};
class Test {
constructor() {
console.log('hello from Test constructor');
}
}
module.exports = Test;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment