UNPKG
@dualjack/svelte-tools
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
⚠️⚠️⚠️ **Still in development** ⚠️⚠️⚠️
github.com/dualjack/svelte-tools
dualjack/svelte-tools
@dualjack/svelte-tools
/
dist
/
tools
/
computed
/
computed.svelte.js
7 lines
(6 loc)
•
130 B
JavaScript
View Raw
1
2
3
4
5
6
7
export function
computed
(
cb
)
{
let
derived = $derived.
by
(cb);
return
{
get
current
()
{
return
derived; } }; }