5 lines
86 B
JavaScript
5 lines
86 B
JavaScript
import { tick } from "svelte";
|
|
export function afterTick(fn) {
|
|
tick().then(fn);
|
|
}
|