String
Example
import * as p from '@vbudovski/paseri';
const schema = p.string();const data = 'foo';
const result = schema.safeParse(data);if (result.ok) { // result.value typed as `string`.}
Playground
Validators
min
Consists of at least length
characters.
p.string().min(3);
max
Consists of at most length
characters.
p.string().max(3);
length
Consists of exactly length
characters.
p.string().length(3);
email
A valid email address.
p.string().email();
emoji
A valid emoji character.
p.string().emoji();
uuid
A valid UUIDΒ π.
p.string().uuid();
nanoid
A valid Nano IDΒ π.
p.string().nanoid();
includes
Contains the searchString
.
p.string().includes('foo');
startsWith
Starts with the searchString
.
p.string().startsWith('foo');
endsWith
Ends with the searchString
.
p.string().endsWith('foo');
date
A valid ISO 8601Β π date string YYYY-MM-DD
.
p.string().date();
time
A valid ISO 8601Β π time string hh:mm:ss[.s+]
.
p.string().time();
You can require a fixed precision by setting the precision
option.
p.string().time({ precision: 3 });// 01:02:03.123 β
// 01:02:03.1234 β
datetime
A valid ISO 8601Β π UTC datetime string YYYY-MM-DDThh:mm:ss[.s+]Z
.
p.string().datetime();
You can require a fixed precision by setting the precision
option.
p.string().datetime({ precision: 3 });// 2020-01-02T01:02:03.123Z β
// 2020-01-02T01:02:03.1234Z β
Non-UTC offsets are accepted by setting the offset
option.
p.string().datetime({ offset: true });// 2020-01-02T01:02:03.123Z β
// 2020-01-02T01:02:03.123+02:30 β
// 2020-01-02T01:02:03.123-0430 β
// 2020-01-02T01:02:03.123 β
Offset-less (naΓ―ve) values are accepted by setting the local
option.
p.string().datetime({ local: true });// 2020-01-02T01:02:03.123Z β
// 2020-01-02T01:02:03.123 β
ip
A valid IPv4Β π or IPv6Β π address.
p.string().ip();// 127.0.0.1 β
// ::1 β
The protocol version can be restricted.
p.string().ip({ version: 4 });// 127.0.0.1 β
// ::1 β
cidr
A valid IP address range in CIDRΒ π notation.
p.string().cidr();// 127.0.0.0/8 β
// ::1/128 β
The protocol version can be restricted.
p.string().cidr({ version: 4 });// 127.0.0.0/8 β
// ::1/128 β
regex
Matches the provided regex
.
p.string().regex(/^a+$/);// aaa β
// aab β