| 88 | }; |
| 89 | |
| 90 | const nullthrows = x => { |
| 91 | if (x != null) { |
| 92 | return x; |
| 93 | } |
| 94 | throw new Error('Got unexpected null or undefined'); |
| 95 | }; |
| 96 | |
| 97 | const sanitizeDraftText = input => { |
| 98 | return input.replace(REGEX_BLOCK_DELIMITER, ''); |
no outgoing calls
no test coverage detected
searching dependent graphs…