1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-07-14 22:21:07 +01:00

chore: decaffeinate: convert error.coffee and 58 other files to JS

This commit is contained in:
decaffeinate
2018-02-13 20:43:42 -05:00
committed by hacksalot
parent b7cd01597e
commit 8a46d642e5
59 changed files with 4568 additions and 3676 deletions

View File

@ -1,14 +1,16 @@
###*
/**
Definition of the TextGenerator class.
@module generators/text-generator
@license MIT. See LICENSE.md for details.
###
*/
TemplateGenerator = require './template-generator'
let TextGenerator;
const TemplateGenerator = require('./template-generator');
###*
/**
The TextGenerator generates a plain-text resume via the TemplateGenerator.
###
module.exports = class TextGenerator extends TemplateGenerator
*/
module.exports = (TextGenerator = class TextGenerator extends TemplateGenerator {
constructor: () -> super 'txt'
constructor() { super('txt'); }
});