UNPKG

@shopify/draggable

Version:

The JavaScript Drag & Drop library your grandparents warned you about.

14 lines (10 loc) 269 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); function touchCoords(event) { const { touches, changedTouches } = event; return touches && touches[0] || changedTouches && changedTouches[0]; } exports.default = touchCoords;