mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
21 lines
444 B
JavaScript
21 lines
444 B
JavaScript
(function() {
|
|
/*
|
|
Definition of the WordGenerator class.
|
|
@module generators/word-generator
|
|
@license MIT. See LICENSE.md for details.
|
|
*/
|
|
var TemplateGenerator, WordGenerator;
|
|
|
|
TemplateGenerator = require('./template-generator');
|
|
|
|
module.exports = WordGenerator = class WordGenerator extends TemplateGenerator {
|
|
constructor() {
|
|
super('doc', 'xml');
|
|
}
|
|
|
|
};
|
|
|
|
}).call(this);
|
|
|
|
//# sourceMappingURL=word-generator.js.map
|