mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
35 lines
753 B
JavaScript
35 lines
753 B
JavaScript
(function() {
|
|
/**
|
|
Definition of the BaseGenerator class.
|
|
@module generators/base-generator
|
|
@license MIT. See LICENSE.md for details.
|
|
*/
|
|
var BaseGenerator;
|
|
|
|
/**
|
|
The BaseGenerator class is the root of the generator hierarchy. Functionality
|
|
common to ALL generators lives here.
|
|
*/
|
|
module.exports = BaseGenerator = (function() {
|
|
class BaseGenerator {
|
|
/** Base-class initialize. */
|
|
constructor(format) {
|
|
this.format = format;
|
|
}
|
|
|
|
};
|
|
|
|
/** Status codes. */
|
|
BaseGenerator.prototype.codes = require('../core/status-codes');
|
|
|
|
/** Generator options. */
|
|
BaseGenerator.prototype.opts = {};
|
|
|
|
return BaseGenerator;
|
|
|
|
}).call(this);
|
|
|
|
}).call(this);
|
|
|
|
//# sourceMappingURL=base-generator.js.map
|