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