The `Less` primitive wrapper object
Less {}
The Less primitive wrapper objectarrow-up-right represents the primitive value of numberarrow-up-right type less than the given.
Less
number
less.class.ts
public get [Symbol.toStringTag](): string The getarrow-up-right accessor, with the help of toStringTagarrow-up-right, changes the default tag to 'Less' for an instance of Less.
get
toStringTag
'Less'
public static create(): Less<Value> Creates the Less instance with the given primitive value.
value
public static isLess(): value is Less<Value> Checks whether the given value is the Less instance of any or given primitive value.
public than(): boolean Checks whether the primitive value of a specified objectarrow-up-right is less than the given value.
object
public thanEvery(): boolean Checks whether the primitive value of a specified objectarrow-up-right is less than every value of the given values.
values
public thanSome(): boolean Checks whether the primitive value of a specified objectarrow-up-right is less than some given values.
public valueOf(): Value Returns the primitive valuearrow-up-right of a specified objectarrow-up-right.
Last updated 3 years ago