Class: RangeParser
Defined in: Parsers/Range.ts:27
The range tag picks a random number from a range of numbers separated by -
.
The number range is inclusive, so it can pick the starting/ending number as well.
Using the rangef tag will pick a number to the tenth decimal place.
Aliases: rangef
Examples
Extends
Implements
Constructors
new RangeParser()
new RangeParser(): RangeParser
Defined in: Parsers/Range.ts:28
Returns
Overrides
Properties
acceptedNames
protected
acceptedNames: string
[]
Defined in: Parsers/Base.ts:8
Inherited from
requiredParameter
protected
requiredParameter: boolean
Defined in: Parsers/Base.ts:10
Inherited from
requiredPayload
protected
requiredPayload: boolean
Defined in: Parsers/Base.ts:12
Inherited from
Methods
parse()
parse(ctx
): string
Defined in: Parsers/Range.ts:32
Parses the given tag.
Parameters
ctx
The context of the tag.
Returns
string
Implementation of
toJSON()
toJSON(): object
Defined in: Parsers/Base.ts:29
Returns
object
acceptedNames
acceptedNames: string
[]
requiredParameter
requiredParameter: boolean
requiredPayload
requiredPayload: boolean
Inherited from
willAccept()
willAccept(ctx
): boolean
Defined in: Parsers/Base.ts:20
Whether the parser can handle the given tag.
Parameters
ctx
Returns
boolean