UNPKG

lrc-maker

Version:

歌词滚动姬|可能是你所能见到的最好用的歌词制作工具

10 lines (7 loc) 282 B
export const isKeyboardElement = (element: EventTarget | null): boolean => { if (element === null) { return false; } const type = (element as HTMLInputElement | HTMLTextAreaElement).type; return type === "textarea" || type === "text" || type === "url"; };