1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-10-05 23:15:12 +01:00
HackMyResume/dist/generators/word-generator.js

22 lines
432 B
JavaScript
Raw Normal View History

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