Integer
Check if the value is an integer or a floating-point
Integer
import Schema from "@rapidom/schema";
const Validator = Schema.number().integer();
const Validator = Schema.number().integer(true); // same resultFloating Point
import Schema from "@rapidom/schema";
const Validator = Schema.number().integer(false);Last updated