dashboard/frontend/node_modules/motion-dom/dist/es/view/utils/has-target.mjs

6 lines
142 B
JavaScript
Raw Normal View History

2025-12-16 08:16:27 +09:00
function hasTarget(target, targets) {
return targets.has(target) && Object.keys(targets.get(target)).length > 0;
}
export { hasTarget };