deepseek-pc/node_modules/seemly/es/dom/get-precise-event-target.js

4 lines
93 B
JavaScript
Raw Normal View History

2025-02-28 19:43:11 +08:00
export function getPreciseEventTarget(event) {
return event.composedPath()[0] || null;
}