Files
AFFiNE-Mirror/libs/components/board-shapes/src/shared/normalize-text.ts
T
2022-07-22 15:49:21 +08:00

10 lines
204 B
TypeScript

const fixNewLines = /\r?\n|\r/g;
export function normalizeText(text: string) {
return text
.replace(fixNewLines, '\n')
.split('\n')
.map(x => x || ' ')
.join('\n');
}