UNPKG

browsernizr

Version:

Modernizr wrapper for use with browserify

23 lines (21 loc) 592 B
/*! { "name": "GamePad API", "property": "gamepads", "authors": ["Eric Bidelman"], "tags": ["media"], "notes": [{ "name": "W3C Spec", "href": "https://www.w3.org/TR/gamepad/" },{ "name": "HTML5 Rocks Tutorial", "href": "https://www.html5rocks.com/en/tutorials/doodles/gamepad/#toc-featuredetect" }] } !*/ /* DOC Detects support for the Gamepad API, for access to gamepads and controllers. */ var Modernizr = require('./../lib/Modernizr.js'); var prefixed = require('./../lib/prefixed.js'); Modernizr.addTest('gamepads', !!prefixed('getGamepads', navigator));