UNPKG

@itwin/core-react

Version:

A react component library of iTwin.js UI general purpose components

14 lines 587 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Bentley Systems, Incorporated. All rights reserved. * See LICENSE.md in the project root for license terms and full copyright notice. *--------------------------------------------------------------------------------------------*/ /** @packageDocumentation * @module Base */ /** Returns `true` if browser supports PointerEvents API. * @internal */ export function hasPointerEventsSupport() { return !!window.PointerEvent; } //# sourceMappingURL=PointerEvents.js.map