Last active
August 25, 2015 22:25
-
-
Save ryanmarshall/c623f5e4d74f89734566 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Generator = function(options) { | |
this.init = function() { | |
console.log('init') | |
this.runSomeSetup(); | |
}; | |
this.runSomeSetup = function() { | |
console.log('setup'); | |
} | |
this.init(); | |
}; | |
if (generator_options) | |
new Generator(generator_options); |
dfltr
commented
Aug 25, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment