1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-05-15 10:07:07 +01:00

chore: decaffeinate: fix eslint violations

This commit is contained in:
hacksalot
2018-02-14 10:02:44 -05:00
parent 8a46d642e5
commit 42d249b407
40 changed files with 412 additions and 454 deletions

View File

@ -5,14 +5,15 @@ Definition of the YAMLGenerator class.
*/
let YAMLGenerator;
const TemplateGenerator = require('./template-generator');
/**
YamlGenerator generates a YAML-formatted resume via TemplateGenerator.
*/
module.exports = (YAMLGenerator = class YAMLGenerator extends TemplateGenerator {
class YAMLGenerator extends TemplateGenerator {
constructor() { super('yml', 'yml'); }
});
}
module.exports = YAMLGenerator;