UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

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