mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
20 lines
388 B
JavaScript
20 lines
388 B
JavaScript
|
|
||
|
/*
|
||
|
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);
|