1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-04-29 03:00:24 +01:00
HackMyResume/src/gen/word-generator.js
devlinjd 8361cf9960 Remove extraneous comma.
Go away, extraneous comma.
2015-12-16 11:25:04 -05:00

14 lines
300 B
JavaScript

/**
MS Word resume generator for FluentCV.
@license Copyright (c) 2015 by James M. Devlin. All rights reserved.
*/
var TemplateGenerator = require('./template-generator');
var WordGenerator = module.exports = TemplateGenerator.extend({
init: function(){
this._super( 'doc', 'xml' );
}
});