UNPKG

sveltekit-superforms-5

Version:

<p align="center"> <img src="https://github.com/ciscoheat/sveltekit-superforms/raw/main/logo.svg" width="150px" align="center" alt="Superforms logo" /> <h1 align="center">Superforms 💥</h1> <p align="center">Making SvelteKit forms a pleasure to use!

14 lines (13 loc) • 434 B
import { browser } from '$app/environment'; export function cancelFlash(options) { if (!options.flashMessage || !browser) return; if (!shouldSyncFlash(options)) return; document.cookie = `flash=; Max-Age=0; Path=${options.flashMessage.cookiePath ?? '/'};`; } export function shouldSyncFlash(options) { if (!options.flashMessage || !browser) return false; return options.syncFlashMessage; }