(text: DecorationType[])
| 4 | classes.filter(a => !!a).join(" "); |
| 5 | |
| 6 | export const getTextContent = (text: DecorationType[]) => { |
| 7 | return text.reduce((prev, current) => prev + current[0], ""); |
| 8 | }; |
| 9 | |
| 10 | const groupBlockContent = (blockMap: BlockMapType): string[][] => { |
| 11 | const output: string[][] = []; |
no outgoing calls
no test coverage detected