Skip to main content

Text

randAbbreviation

Generate a random abbreviation.

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

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

randAlpha

Get a random alpha.

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

randAlpha()
randAlpha({ length: 3 })
Live Editor
Result
Loading...

randAlphaNumeric

Get a random alpha or numeric.

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

randAlphaNumeric()
randAlphaNumeric({ length: 3 })
Live Editor
Result
Loading...

randCatchPhrase

Generate a random catch phrase.

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

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

randEmoji

Generate a random emoji.

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

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

randLine

Generate random lines.

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

randLine()
randLine({ lineCount: 10 }) // default is 5
Live Editor
Result
Loading...

randLines

Generate a random lines.

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

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

randParagraph

Generate a random paragraph.

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

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

randPhrase

Generate a random phrase.

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

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

randQuote

Generate a random quote.

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

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

randSentence

Generate a random sentence.

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

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

randText

Generate a random text.

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

randText()
randText({ length: 10 })
randText({ charCount: 10 }) // default is 10
Live Editor
Result
Loading...

randTextRange

Generate a random text range.

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

randTextRange({ min: 10, max: 100 })
randTextRange({ min: 10, max: 100, length: 10 })
Live Editor
Result
Loading...

randVerb

Generate a random verb.

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

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

randWord

Generate a random word.

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

randWord()
randWord({ capitalize: true }) // default is false
randWord({ length: 10 })
Live Editor
Result
Loading...