Created
January 26, 2021 23:01
-
-
Save kamilklkn/bac563a54d8cf4cd481dedced51203bc to your computer and use it in GitHub Desktop.
Belirtilen değerin dokunmatik destekleyip desteklemediğini geri döner.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const supportsTouchEvents = () => | |
window && 'ontouchstart' in window; | |
//EXAMPLES | |
supportsTouchEvents(); // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment