Skip to main content

Flight

randAirline

Generate a random airline.

import { randAirline } from '@ngneat/falso';

randAirline()
randAirline({ length: 10 })
Live Editor
Result
Loading...

randAirport

Generate a random airport.

import { randAirport } from '@ngneat/falso';

randAirport()
randAirport({ length: 10 })
Live Editor
Result
Loading...

randAirportCode

Generate a random airport code.

import { randAirportCode } from '@ngneat/falso';

randAirportCode()
randAirportCode({ length: 10 })
Live Editor
Result
Loading...

randAirportName

Generate a random airport name.

import { randAirportName } from '@ngneat/falso';

randAirportName()
randAirportName({ length: 10 })
Live Editor
Result
Loading...

randFlightDetails

Generate a random flight details.

import { randFlightDetails } from '@ngneat/falso';

randFlightDetails()
randFlightDetails({ passenger: 'Ryan Smee' })
randFlightDetails({ airline: 'RyanAir' })
randFlightDetails({ length: 10 })
Live Editor
Result
Loading...

randFlightNumber

Generate a random flight number.

import { randFlightNumber } from '@ngneat/falso';

randFlightNumber()
randFlightNumber({ airline: 'RyanAir' })
randFlightNumber({ length: 10 })
Live Editor
Result
Loading...

randSeatNumber

Generate a random seat number.

import { randSeatNumber } from '@ngneat/falso';

randSeatNumber()
randSeatNumber({ length: 10 })
Live Editor
Result
Loading...