1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-07 18:20:05 +01:00
HackMyResume/dist/generators/base-generator.js

41 lines
706 B
JavaScript
Raw Normal View History

2016-01-27 10:29:26 +00:00
/**
Definition of the BaseGenerator class.
@module generators/base-generator
2016-01-27 10:29:26 +00:00
@license MIT. See LICENSE.md for details.
*/
/**
The BaseGenerator class is the root of the generator hierarchy. Functionality
common to ALL generators lives here.
*/
2016-01-27 10:29:26 +00:00
(function() {
var BaseGenerator;
2016-01-27 10:29:26 +00:00
module.exports = BaseGenerator = (function() {
2016-01-27 10:29:26 +00:00
/** Base-class initialize. */
function BaseGenerator(format) {
this.format = format;
}
2016-01-27 10:29:26 +00:00
/** Status codes. */
BaseGenerator.prototype.codes = require('../core/status-codes');
2016-01-27 10:29:26 +00:00
/** Generator options. */
BaseGenerator.prototype.opts = {};
return BaseGenerator;
})();
2016-01-27 10:29:26 +00:00
}).call(this);
2016-02-02 02:14:36 +00:00
//# sourceMappingURL=base-generator.js.map