File size: 232 Bytes
1e92f2d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
// @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');
};