UNPKG

@threlte/core

Version:

A 3D framework for the web, built on top of Svelte and Three.js

10 lines (9 loc) 169 B
let currentIs; export const setIs = (is) => { currentIs = is; }; export const useIs = () => { const is = currentIs; currentIs = undefined; return is; };