UNPKG

app-datepicker

Version:

Google Material Design based date picker built with lit

9 lines (8 loc) 252 B
export async function focusElement(asyncSelector, thenCallback) { const resolvedElement = await asyncSelector; if (resolvedElement) { resolvedElement.focus(); thenCallback?.(resolvedElement); } return resolvedElement; }