File size: 123 Bytes
a5619c2
 
7f214aa
a5619c2
 
 
7f214aa
1
2
3
4
5
6
7
8
import { tick } from "svelte";

export function autofocus(node: HTMLElement) {
	tick().then(() => {
		node.focus();
	});
}