@webex/webrtc 3.0.0-beta.14 → 3.0.0-beta.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -14,6 +14,8 @@ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime-corejs2/he
14
14
 
15
15
  var _createClass2 = _interopRequireDefault(require("@babel/runtime-corejs2/helpers/createClass"));
16
16
 
17
+ /* eslint-disable no-console */
18
+
17
19
  /*!
18
20
  * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.
19
21
  */
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"names":["WebRTC","console","log"],"sources":["index.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\n/**\n * APIs to talk with the browser.\n * This package could be used by any third-party project.\n */\nexport default class WebRTC {\n /**\n * Print stats to console.\n * @returns {undefined}\n */\n printStatsToConsole() {\n console.log('stats');\n }\n\n /**\n * Get history.\n * @returns {Object}\n */\n getHistory() {\n return {};\n }\n\n /**\n * Get info before analysis.\n * @returns {Object}\n */\n getRawInfo() {\n return {};\n }\n\n /**\n * Set peer connection and video.\n * TODO: Should this be split into explicit calls?\n * e.g., setPeerConnection, setVideo\n * @returns {undefined}\n */\n setPeerConnectionAndVideo() {\n\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;AACA;AACA;;AAEA;AACA;AACA;AACA;IACqBA,M;;;;;;;;IACnB;AACF;AACA;AACA;IACE,+BAAsB;MACpBC,OAAO,CAACC,GAAR,CAAY,OAAZ;IACD;IAED;AACF;AACA;AACA;;;;WACE,sBAAa;MACX,OAAO,EAAP;IACD;IAED;AACF;AACA;AACA;;;;WACE,sBAAa;MACX,OAAO,EAAP;IACD;IAED;AACF;AACA;AACA;AACA;AACA;;;;WACE,qCAA4B,CAE3B"}
1
+ {"version":3,"names":["WebRTC","console","log"],"sources":["index.js"],"sourcesContent":["/* eslint-disable no-console */\n\n/*!\n * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.\n */\n\n/**\n * APIs to talk with the browser.\n * This package could be used by any third-party project.\n */\nexport default class WebRTC {\n /**\n * Print stats to console.\n * @returns {undefined}\n */\n printStatsToConsole() {\n console.log('stats');\n }\n\n /**\n * Get history.\n * @returns {Object}\n */\n getHistory() {\n return {};\n }\n\n /**\n * Get info before analysis.\n * @returns {Object}\n */\n getRawInfo() {\n return {};\n }\n\n /**\n * Set peer connection and video.\n * TODO: Should this be split into explicit calls?\n * e.g., setPeerConnection, setVideo\n * @returns {undefined}\n */\n setPeerConnectionAndVideo() {}\n}\n"],"mappings":";;;;;;;;;;;;;;;;AAAA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;IACqBA,M;;;;;;;;IACnB;AACF;AACA;AACA;IACE,+BAAsB;MACpBC,OAAO,CAACC,GAAR,CAAY,OAAZ;IACD;IAED;AACF;AACA;AACA;;;;WACE,sBAAa;MACX,OAAO,EAAP;IACD;IAED;AACF;AACA;AACA;;;;WACE,sBAAa;MACX,OAAO,EAAP;IACD;IAED;AACF;AACA;AACA;AACA;AACA;;;;WACE,qCAA4B,CAAE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/webrtc",
3
- "version": "3.0.0-beta.14",
3
+ "version": "3.0.0-beta.15",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "contributors": [
package/src/index.js CHANGED
@@ -1,3 +1,5 @@
1
+ /* eslint-disable no-console */
2
+
1
3
  /*!
2
4
  * Copyright (c) 2015-2020 Cisco Systems, Inc. See LICENSE file.
3
5
  */
@@ -37,7 +39,5 @@ export default class WebRTC {
37
39
  * e.g., setPeerConnection, setVideo
38
40
  * @returns {undefined}
39
41
  */
40
- setPeerConnectionAndVideo() {
41
-
42
- }
42
+ setPeerConnectionAndVideo() {}
43
43
  }