Does it simply predetermine standardized functions by vendor or does it have its own API? If you have your own API, you can link to the documentation, I did not find the docks in Google.
1 answer
adapter.js is a kind of thing that includes all api to support WebRTC .
According to this link between chrome and firefox there are some differences and this “library” removes these differences by the fact that the definition of what to use, be it the Chrome API or the Fox API, lies on it. Well, we just use the one that gives us adapter.js .
If literally:
adapter.js is a shim to insulate apps from changes and prefix differences. In fact, the standards and protocols used for WebRTC implementations are highly stable, and there are only a few prefixed names. For full interop information, see webrtc.org/web-apis/interop.
Taken from off repository on github
|