UNPKG

vike

Version:

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

8 lines (7 loc) 237 B
export function getValuePrintable(value) { if ([null, undefined].includes(value)) return String(value); if (['boolean', 'number', 'string'].includes(typeof value)) return JSON.stringify(value); return null; }