UNPKG

@justalk/covid19ph-api

Version:

API for COVID 19 Cases in the Philippines

12 lines (10 loc) 294 B
const got = require('got'); module.exports = { get_the_follow_link: async doh_source => { const response = await got(doh_source); return response.redirectUrls[0]; }, get_covid_case_file: files => { return files.find(file => file.name && file.name.includes('Case Information')); } };