UNPKG

random-flight-generator

Version:
13 lines (12 loc) 409 B
"use strict"; var FlightGenerator_1 = require("./FlightGenerator"); module.exports = function (options) { var flightGenerator = new FlightGenerator_1.FlightGenerator(options); var flight = flightGenerator.generateFlight(); if (flight.isValid()) { return flight; } else { throw Error('No flights found! Check your flight configuration and try again.'); } };