import fxp.core.F;
Returns true iff arguments are strictly equal.
Example:
F.utils.equals(3, 3) === true;
Returns true iff the second argument is lower than the first argument.
Example:
F.utils.lowerThan(2, 1) === true;
Returns true iff the second argument is lower or equal to the first argument.
Example:
F.utils.lowerEqual(2, 1) === true;
Returns true iff the second argument is greater than the first argument.
Example:
F.utils.greaterThan(2, 1) === true;
Returns true iff the second argument is greater or equal to the first argument.
Example:
F.utils.greaterEqual(2, 1) === true;
Returns either the first (resp. second) argument if the Boolean is false (resp. true).
Example:
F.utils.selector(null, { a: 1 }, true); // == { a: 1 }
F.utils.selector(null, { a: 1 }, false); // == null
Returns true iff a is a native type (number, boolean, string).
Example:
F.utils.isNativeType(12) === true;