UNPKG

@riadvargas/svelte-algolia-instantsearch

Version:
11 lines (8 loc) 253 B
import { getServerContext } from "$lib/getServerState"; import { onDestroy } from "svelte"; export function onDestroyClientSide(callback: () => void) { const serverContext = getServerContext(); if (!serverContext) { onDestroy(callback); } }