UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

7 lines (6 loc) 145 B
export function removeEmptyLines(msg) { return msg .split('\n') .filter((line) => line.trim() !== '') .join('\n'); }