UNPKG

yolo-tips

Version:

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

14 lines (10 loc) 236 B
'use strict' const Skyscanner = require('skyscanner') const skyscanner = (opt) => { opt = opt || {} return new Skyscanner({ country: opt.country || 'PT', currency: opt.currency || 'EUR' }) } module.exports = skyscanner