UNPKG
@sv-use/core
Version:
latest (1.15.1)
1.15.1
1.15.0
1.14.0
1.13.0
1.12.0
1.11.0
1.10.2
1.10.1
1.10.0
1.9.0
1.8.2
1.8.1
1.8.0
1.7.0
1.6.0
1.5.0
1.4.3
1.4.2
1.4.1
1.4.0
1.3.2
1.3.1
1.3.0
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
1.0.0-alpha
0.50.0
0.49.0
0.48.0
0.47.2
0.47.1
0.47.0
0.46.0
0.45.0
0.44.2
0.44.0
0.43.2
0.43.1
0.43.0
0.42.1
0.42.0
0.41.1
0.41.0
0.39.0
0.38.0
0.37.0
0.36.3
0.36.2
0.36.1
0.36.0
0.35.1
0.34.0
0.33.0
0.32.0
0.31.1
0.31.0
0.30.0
0.29.0
0.28.2
0.28.1
0.28.0
0.25.4
0.24.4
0.24.2
0.24.1
0.24.0
0.23.0
0.22.0
0.21.0
0.20.2
0.20.1
0.20.0
0.19.2
0.19.1
0.19.0
A collection of Svelte 5 utilities.
www.sv-use.org
svelte-librarian/sv-use
@sv-use/core
/
dist
/
__internal__
/
is.svelte.js
10 lines
(9 loc)
•
242 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
BROWSER
}
from
'esm-env'
;
/** Only runs in browser. */
export
function
isSupported
(
callback
) {
let
_isSupported = $state(
false
);
if
(
BROWSER
) { _isSupported =
callback
(); }
return
{
current
: _isSupported }; }