mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
6 lines
225 B
JavaScript
6 lines
225 B
JavaScript
export function isEditableTarget(target) {
|
|
if (!(target instanceof Element)) {
|
|
return false;
|
|
}
|
|
return !!target.closest("input, textarea, select, [contenteditable=''], [contenteditable='true'], [role='textbox']");
|
|
}
|