(DocumentStore)
| 77 | } |
| 78 | |
| 79 | const sanitizeDocumentStore = (DocumentStore) => { |
| 80 | try { |
| 81 | return DocumentStore.map((documentStore) => { |
| 82 | return { ...documentStore, workspaceId: undefined } |
| 83 | }) |
| 84 | } catch (error) { |
| 85 | throw new Error(`exportImport.sanitizeDocumentStore ${getErrorMessage(error)}`) |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | const sanitizeExecution = (Execution) => { |
| 90 | try { |
no test coverage detected