(schema: StringMap, name: string)
| 70 | } |
| 71 | |
| 72 | function lookupProperty(schema: StringMap, name: string): StringMap { |
| 73 | const properties = checkStringMap(schema.properties); |
| 74 | return checkStringMap(properties[name]); |
| 75 | } |
| 76 | |
| 77 | function indexArray(cases: any, index: number): StringMap { |
| 78 | if (!Array.isArray(cases)) { |
no test coverage detected
searching dependent graphs…