UNPKG

generator-begcode

Version:

Spring Boot + Angular/React/Vue in one handy generator

6 lines (5 loc) 156 B
export const cleanWhitespace = (text) => text .split('\n') .map(x => x.replace(/\s+/g, ' ').trim()) .filter(x => x.length > 0) .join('\n');