UNPKG
svelte-meilisearch-instantsearch
Version:
latest (0.12.6)
0.12.6
0.12.5
0.12.4
0.12.3
0.12.2
0.12.1
Svelte wrapper for Meilisearch InstantSearch
svelte-meilisearch-instantsearch
/
dist
/
utils
/
onDestroyClientSide.js
9 lines
(8 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ getServerContext }
from
"../getServerState"
;
import
{ onDestroy }
from
"svelte"
;
export
function
onDestroyClientSide
(
callback
) {
const
serverContext =
getServerContext
();
if
(!serverContext) {
onDestroy
(callback); } }