import * as N from "flurp/number";const atLeastFour = N.isGte(4);atLeastFour(6); // trueatLeastFour(4); // trueatLeastFour(2); // false
Example