2016-01-27 10:29:26 +00:00
|
|
|
(function() {
|
2018-02-12 05:05:29 +00:00
|
|
|
/*
|
|
|
|
Definition of the WordGenerator class.
|
|
|
|
@module generators/word-generator
|
|
|
|
@license MIT. See LICENSE.md for details.
|
|
|
|
*/
|
|
|
|
var TemplateGenerator, WordGenerator;
|
2016-01-27 10:29:26 +00:00
|
|
|
|
|
|
|
TemplateGenerator = require('./template-generator');
|
|
|
|
|
2018-02-12 05:05:29 +00:00
|
|
|
module.exports = WordGenerator = class WordGenerator extends TemplateGenerator {
|
|
|
|
constructor() {
|
|
|
|
super('doc', 'xml');
|
2016-01-27 10:29:26 +00:00
|
|
|
}
|
2016-02-02 18:38:12 +00:00
|
|
|
|
2018-02-12 05:05:29 +00:00
|
|
|
};
|
2016-01-27 10:29:26 +00:00
|
|
|
|
|
|
|
}).call(this);
|
2016-02-02 02:14:36 +00:00
|
|
|
|
|
|
|
//# sourceMappingURL=word-generator.js.map
|