(fileName)
| 11757 | } |
| 11758 | } |
| 11759 | function removeExtensions(fileName) { |
| 11760 | exportTypes.forEach(([exportType])=>{ |
| 11761 | const re = new RegExp(`\\.${exportType}`, "ig"); |
| 11762 | fileName = fileName.replace(re, ""); |
| 11763 | }); |
| 11764 | return fileName; |
| 11765 | } |
| 11766 | function columnReplacer(name, value) { |
| 11767 | if ((0, _sanddanceReact.SandDance).util.isInternalFieldName(name, true)) return undefined; |
| 11768 | return value === null ? "" : value; |