mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2025-07-04 17:31:04 +01:00
chore: decaffeinate: convert error.coffee and 58 other files to JS
This commit is contained in:
@ -1,14 +1,16 @@
|
||||
###*
|
||||
/**
|
||||
Definition of the MarkdownGenerator class.
|
||||
@module generators/markdown-generator
|
||||
@license MIT. See LICENSE.md for details.
|
||||
###
|
||||
*/
|
||||
|
||||
TemplateGenerator = require './template-generator'
|
||||
let MarkdownGenerator;
|
||||
const TemplateGenerator = require('./template-generator');
|
||||
|
||||
###*
|
||||
/**
|
||||
MarkdownGenerator generates a Markdown-formatted resume via TemplateGenerator.
|
||||
###
|
||||
module.exports = class MarkdownGenerator extends TemplateGenerator
|
||||
*/
|
||||
module.exports = (MarkdownGenerator = class MarkdownGenerator extends TemplateGenerator {
|
||||
|
||||
constructor: () -> super 'md', 'txt'
|
||||
constructor() { super('md', 'txt'); }
|
||||
});
|
||||
|
Reference in New Issue
Block a user