mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
0f65e4c9f3
Reintroduce HackMyCore, dropping the interim submodule, and reorganize and improve tests.
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);
|