Skip to content

Null

Example

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

Playground

Schema
Data
Result