Skip to content

Number

Example

import * as p from '@vbudovski/paseri';
const schema = p.number();
const data = 123;
const result = schema.safeParse(data);
if (result.ok) {
// result.value typed as `number`.
}

Playground

Schema
Data
Result

Validators

gte

Greater than or equal to value.

p.string().gte(5);

gt

Greater than value.

p.string().gt(5);

lte

Less than or equal to value.

p.string().lte(5);

lt

Less than value.

p.string().lt(5);

int

A valid integer.

p.string().int();

finite

A finite number, excluding Number.NEGATIVE_INFINITY and Number.POSITIVE_INFINITY.

p.string().int();

safe

A valid integer between Number.MIN_SAFE_INTEGER and Number.MAX_SAFE_INTEGER.

p.string().int();