2016-01-27 10:29:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Definition of the YAMLGenerator class.
|
|
|
|
@module yaml-generator.js
|
|
|
|
@license MIT. See LICENSE.md for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
(function() {
|
2016-02-02 18:38:12 +00:00
|
|
|
var TemplateGenerator, YAMLGenerator,
|
|
|
|
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
|
|
|
|
hasProp = {}.hasOwnProperty;
|
2016-01-27 10:29:26 +00:00
|
|
|
|
|
|
|
TemplateGenerator = require('./template-generator');
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
YamlGenerator generates a YAML-formatted resume via TemplateGenerator.
|
|
|
|
*/
|
|
|
|
|
2016-02-02 18:38:12 +00:00
|
|
|
module.exports = YAMLGenerator = (function(superClass) {
|
|
|
|
extend(YAMLGenerator, superClass);
|
|
|
|
|
|
|
|
function YAMLGenerator() {
|
|
|
|
YAMLGenerator.__super__.constructor.call(this, 'yml', 'yml');
|
2016-01-27 10:29:26 +00:00
|
|
|
}
|
2016-02-02 18:38:12 +00:00
|
|
|
|
|
|
|
return YAMLGenerator;
|
|
|
|
|
|
|
|
})(TemplateGenerator);
|
2016-01-27 10:29:26 +00:00
|
|
|
|
|
|
|
}).call(this);
|
2016-02-02 02:14:36 +00:00
|
|
|
|
|
|
|
//# sourceMappingURL=yaml-generator.js.map
|