1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-07 18:20:05 +01:00
HackMyResume/dist/generators/word-generator.js

29 lines
873 B
JavaScript
Raw Normal View History

2016-01-27 10:29:26 +00:00
/*
Definition of the WordGenerator class.
@module generators/word-generator
@license MIT. See LICENSE.md for details.
2016-01-27 10:29:26 +00:00
*/
(function() {
var TemplateGenerator, WordGenerator,
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
hasProp = {}.hasOwnProperty;
2016-01-27 10:29:26 +00:00
TemplateGenerator = require('./template-generator');
module.exports = WordGenerator = (function(superClass) {
extend(WordGenerator, superClass);
function WordGenerator() {
2016-02-03 00:02:56 +00:00
WordGenerator.__super__.constructor.call(this, 'doc', 'xml');
2016-01-27 10:29:26 +00:00
}
return WordGenerator;
})(TemplateGenerator);
2016-01-27 10:29:26 +00:00
}).call(this);
2016-02-02 02:14:36 +00:00
//# sourceMappingURL=word-generator.js.map