Ver código fonte

Update validation

Remove datelike schema.
master
TheoryOfNekomata 6 meses atrás
pai
commit
0f49ced7c7
1 arquivos alterados com 0 adições e 12 exclusões
  1. +0
    -12
      packages/core/src/common/validation.ts

+ 0
- 12
packages/core/src/common/validation.ts Ver arquivo

@@ -1,13 +1 @@
import * as v from 'valibot';
export * from 'valibot';

export const datelike = () => v.transform(
v.union([
v.string([v.isoDate()]),
v.string([v.isoDateTime()]),
v.number(),
v.date()
]),
(value) => new Date(value).toISOString(),
v.string([v.isoTimestamp()])
);

Carregando…
Cancelar
Salvar