| 3 | import sigmfSchema from '@/data/sigmf-schema.json'; |
| 4 | |
| 5 | interface MetadataValidator { |
| 6 | metadata: string; |
| 7 | errors: any[]; |
| 8 | } |
| 9 | |
| 10 | export function metadataValidator(metadataValue: string, path: string = null) { |
| 11 | let metadataValidator = { metadata: metadataValue, errors: [] } as MetadataValidator; |
nothing calls this directly
no outgoing calls
no test coverage detected