export function touchEndEventName()

in src/touch/touch.ts [49:58]


export function touchEndEventName(): string {
    let eventName: string = "touchend";

    if (window["PointerEvent"]) {
        // IE11
        eventName = "pointerup";
    }

    return eventName;
}