(state = {})
| 74 | } |
| 75 | |
| 76 | function shouldAppendAccountRunTextFile(state = {}) { |
| 77 | if (!Boolean(state.accountRunHistoryTextEnabled)) { |
| 78 | return false; |
| 79 | } |
| 80 | |
| 81 | const helperBaseUrl = normalizeAccountRunHistoryHelperBaseUrl(state.accountRunHistoryHelperBaseUrl); |
| 82 | return Boolean(helperBaseUrl); |
| 83 | } |
| 84 | |
| 85 | async function appendAccountRunHistoryTextFile(record, stateOverride = null) { |
| 86 | const normalizedRecord = record && typeof record === 'object' |
no test coverage detected