Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
// @flow
import type { RawContentState } from 'draft-js';
export const toPlainText = (raw: RawContentState) => {
return raw.blocks
.filter(block => block.type === 'unstyled')
.map(block => block.text)
.join('\n');
};