DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
import { VERSION } from 'svelte/compiler';
/**
* @type {boolean}
*/
export const isSvelte4 = VERSION.startsWith('4.');
/**
* @type {boolean}
*/
export const isSvelte5 = VERSION.startsWith('5.');
/**
* @type {boolean}
*/
export const isSvelte5WithHMRSupport =
VERSION.startsWith('5.0.0-next.') && Number(VERSION.slice(11)) > 96;