11 lines
198 B
JavaScript
11 lines
198 B
JavaScript
const isDragging = {
|
|
x: false,
|
|
y: false,
|
|
};
|
|
function isDragActive() {
|
|
return isDragging.x || isDragging.y;
|
|
}
|
|
|
|
export { isDragActive, isDragging };
|
|
//# sourceMappingURL=is-active.mjs.map
|