( filename: string, contents: string, options?: CreateJsonOptions )
| 6 | import convertFromRawXml from "./convertFromRawXml"; |
| 7 | |
| 8 | export default async function createFromRawXml( |
| 9 | filename: string, |
| 10 | contents: string, |
| 11 | options?: CreateJsonOptions |
| 12 | ): Promise<JSONDocument> { |
| 13 | const jsonString: string = convertFromRawXml(contents); |
| 14 | return createFromRawJson(filename, jsonString, options); |
| 15 | } |
no test coverage detected