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