26 lines
529 B
JavaScript
26 lines
529 B
JavaScript
|
/*
|
||
|
* Mix WebRTC v1.0.0
|
||
|
* the Javascript SIP library
|
||
|
* Copyright: mixcom.cn
|
||
|
* Homepage: https://www.mixcom.cn
|
||
|
* License: MIT
|
||
|
*/
|
||
|
|
||
|
!(function (e) {
|
||
|
if ("object" == typeof exports && "undefined" != typeof module)
|
||
|
module.exports = e();
|
||
|
else if ("function" == typeof define && define.amd) define([], e);
|
||
|
else {
|
||
|
("undefined" != typeof window
|
||
|
? window
|
||
|
: "undefined" != typeof global
|
||
|
? global
|
||
|
: "undefined" != typeof self
|
||
|
? self
|
||
|
: this
|
||
|
).WebRTC = e();
|
||
|
}
|
||
|
})(function () {
|
||
|
|
||
|
});
|