(u: unknown)
| 664 | * @since 3.10.0 |
| 665 | */ |
| 666 | export const isSchema = (u: unknown): u is Schema.Any => |
| 667 | Predicate.hasProperty(u, TypeId) && Predicate.isObject(u[TypeId]) |
| 668 | |
| 669 | /** |
| 670 | * @category api interface |
no outgoing calls
no test coverage detected
searching dependent graphs…