job-scraper
Version:
An api that returns job prospect data scraped from indeed and monster
20 lines (16 loc) • 617 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var JobProspect = exports.JobProspect = function JobProspect(company, location, date, job, url, description, truncated, _data) {
_classCallCheck(this, JobProspect);
this.company = company;
this.location = location;
this.date = date;
this.job = job;
this.url = url;
this.truncatedDescription = truncated;
this.descriptionHTML = description;
this._data = _data;
};