mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
25 lines
465 B
JavaScript
25 lines
465 B
JavaScript
|
|
||
|
/**
|
||
|
Definition of the TextGenerator class.
|
||
|
@license MIT. See LICENSE.md for details.
|
||
|
@module text-generator.js
|
||
|
*/
|
||
|
|
||
|
(function() {
|
||
|
var TemplateGenerator, TextGenerator;
|
||
|
|
||
|
TemplateGenerator = require('./template-generator');
|
||
|
|
||
|
|
||
|
/**
|
||
|
The TextGenerator generates a plain-text resume via the TemplateGenerator.
|
||
|
*/
|
||
|
|
||
|
TextGenerator = module.exports = TemplateGenerator.extend({
|
||
|
init: function() {
|
||
|
return this._super('txt');
|
||
|
}
|
||
|
});
|
||
|
|
||
|
}).call(this);
|