UNPKG

yolo-tips

Version:

Cheap Flight Suggester, that suggests you weekend trips based on the cheapest deals it finds using SkyScanner.

15 lines (11 loc) 288 B
'use strict' const skyscanner = require('./skyscanner') function findAirport (opt, cb) { skyscanner({ country: opt.country || 'PT', currency: opt.currency || 'EUR' }).autosuggest(opt.search) .then((data) => cb(null, data)) .catch(cb) } module.exports = findAirport