Wrapper for schiphol api
Experimental! Work in progress...
Example of how to run:
import Schiphol from 'schiphol';
// or
const Schiphol = require('schiphol').default;
const schiphol = new Schiphol('appId', 'appKey');
schiphol.getFlights().then(r => {
console.log(r.result);
})