thanEvery()
Checks whether the primitive value of a specified object is less than every value of the given values
Less.prototype.thanEvery()
Less.prototype.thanEvery()public thanEvery(...values: number[]): boolean {
return Array.isArray(values)
? values.every((value) => this.valueOf() < value)
: false;
}Parameters
Return type
Returns
Example usage
Last updated