UNPKG

flight-stats

Version:
18 lines (17 loc) 315 B
/** * The current status of the flight * @name FlightStatus * @memberOf FlightStats * @type {Object<String,String>} */ module.exports = { A: 'Active', C: 'Canceled', D: 'Diverted', DN: 'Data Not Available', L: 'Landed', NO: 'Not Operational', R: 'Redirected', S: 'Scheduled', U: 'Unknown', }