(e)
| 19332 | }; |
| 19333 | } |
| 19334 | function getPosition(e) { |
| 19335 | let xy = hasClientXY(e); |
| 19336 | if (xy) return xy; |
| 19337 | const te = e; |
| 19338 | if (te === null || te === void 0 ? void 0 : te.touches) for(let i = 0; i < te.touches.length; i++){ |
| 19339 | let xy = hasClientXY(te.touches[i]); |
| 19340 | if (xy) return xy; |
| 19341 | } |
| 19342 | const el = e.target; |
| 19343 | if (el && el.getClientRects) return el.getClientRects()[0]; |
| 19344 | } |
| 19345 | |
| 19346 | },{"@parcel/transformer-js/src/esmodule-helpers.js":"jA2du"}],"bHInZ":[function(require,module,exports) { |
| 19347 | var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js"); |
nothing calls this directly
no test coverage detected