thanEvery()
Checks whether the primitive value of a specified object is less than every value of the given values
Last updated
// Example usage.
import { Less } from '@angular-package/range';
// Define constant `id`.
const id = 390;
// Returns `false`.
new Less(id).thanEvery(387, 388, 390);
// Returns `true`.
new Less(id).thanEvery(393, 392, 394, 391);