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
/
indexContext.js
9 lines
(8 loc)
•
257 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ getContext, setContext }
from
"svelte"
;
const
contextKey =
Symbol
(
"InstantSearch:indexContext"
);
export
function
setIndexContext
(
index
) {
setContext
(contextKey, index); }
export
function
getIndexContext
(
) {
return
getContext
(contextKey); }