UNPKG

ats-checker

Version:

A simple ATS (Applicant Tracking System) resume and job description matcher

23 lines (11 loc) 277 B
const nlp = require('compromise'); function getKeys(Desc){ let doc = nlp(Desc); let nouns = doc.nouns().out('array'); let Match=''; for(let i=0; i<nouns.length;i++){ Match+=' '+nouns[i]; } return Match; } module.exports={getKeys};