()
| 11 | export const ID = IDSchema.pipe( |
| 12 | statics((schema: typeof IDSchema) => { |
| 13 | const create = () => schema.make("pty_" + ascending()) |
| 14 | return { |
| 15 | create, |
| 16 | ascending: (id?: string) => (id === undefined ? create() : schema.make(id)), |
no test coverage detected