You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
407 B
15 lines
407 B
1 year ago
|
import sourceEvent from "./sourceEvent";
|
||
|
import point from "./point";
|
||
|
|
||
|
export default function(node, touches, identifier) {
|
||
|
if (arguments.length < 3) identifier = touches, touches = sourceEvent().changedTouches;
|
||
|
|
||
|
for (var i = 0, n = touches ? touches.length : 0, touch; i < n; ++i) {
|
||
|
if ((touch = touches[i]).identifier === identifier) {
|
||
|
return point(node, touch);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return null;
|
||
|
}
|