1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-03 00:30:05 +01:00
HackMyResume/dist/utils/resume-detector.js

22 lines
386 B
JavaScript
Raw Normal View History

2018-01-30 07:34:58 +00:00
/**
Definition of the ResumeDetector class.
@module utils/resume-detector
@license MIT. See LICENSE.md for details.
*/
(function() {
module.exports = function(rez) {
if (rez.meta && rez.meta.format) {
return 'fresh';
} else if (rez.basics) {
return 'jrs';
} else {
return 'unk';
}
};
}).call(this);
//# sourceMappingURL=resume-detector.js.map