(path: ReadonlyArray<string>)
| 657 | }) |
| 658 | |
| 659 | function escapePath(path: ReadonlyArray<string>): string { |
| 660 | return "/" + path.map(escapeToken).join("/") |
| 661 | } |
| 662 | |
| 663 | if (Arr.isArrayNonEmpty(pathOps)) { |
| 664 | const jsonSchemaMultiDocument = compileSchemas(Arr.map(pathOps, (op) => op.ast)) |
no test coverage detected