mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-18 07:31:04 +00:00
20 lines
523 B
JavaScript
20 lines
523 B
JavaScript
/*!
|
|
{
|
|
"name": "getUserMedia",
|
|
"property": "getusermedia",
|
|
"caniuse": "stream",
|
|
"tags": ["webrtc"],
|
|
"authors": ["Eric Bidelman", "Masataka Yakura"],
|
|
"notes": [{
|
|
"name": "W3C Spec",
|
|
"href": "https://w3c.github.io/mediacapture-main/#dom-mediadevices-getusermedia"
|
|
}]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Detects support for the new Promise-based `getUserMedia` API.
|
|
*/
|
|
define(['Modernizr'], function (Modernizr) {
|
|
Modernizr.addTest('getUserMedia', 'mediaDevices' in navigator && 'getUserMedia' in navigator.mediaDevices);
|
|
});
|