UNPKG

@sv-use/core

Version:

A collection of Svelte 5 utilities.

10 lines (9 loc) 242 B
import { BROWSER } from 'esm-env'; /** Only runs in browser. */ export function isSupported(callback) { let _isSupported = $state(false); if (BROWSER) { _isSupported = callback(); } return { current: _isSupported }; }