(docxFile, styleMap)
| 1968 | var styleMapAbsolutePath = "/" + styleMapPath; |
| 1969 | |
| 1970 | function writeStyleMap(docxFile, styleMap) { |
| 1971 | docxFile.write(styleMapPath, styleMap); |
| 1972 | return updateRelationships(docxFile).then(function() { |
| 1973 | return updateContentTypes(docxFile); |
| 1974 | }); |
| 1975 | } |
| 1976 | |
| 1977 | function updateRelationships(docxFile) { |
| 1978 | var path = "word/_rels/document.xml.rels"; |
nothing calls this directly
no test coverage detected