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