(node, config, state)
| 182 | * @returns {string} |
| 183 | */ |
| 184 | const stringifyCdata = (node, config, state) => { |
| 185 | return ( |
| 186 | createIndent(config, state) + |
| 187 | config.cdataStart + |
| 188 | node.value + |
| 189 | config.cdataEnd |
| 190 | ); |
| 191 | }; |
| 192 | |
| 193 | /** |
| 194 | * @param {import('./types.js').XastElement} node |
no test coverage detected