xgplayer-streaming-shared
Advanced tools
Comparing version 3.0.0-next.25 to 3.0.0-next.26
@@ -9,2 +9,3 @@ import { defineProperty as _defineProperty, createClass as _createClass, classCallCheck as _classCallCheck, typeof as _typeof } from "./_virtual/_rollupPluginBabelHelpers.js"; | ||
import "core-js/modules/es.object.to-string.js"; | ||
import "core-js/modules/es.array.includes.js"; | ||
var LogCacheLevel = { | ||
@@ -17,2 +18,3 @@ "DEBUG": 1, | ||
var LOG_MAX_SIZE = 200 * 1024; | ||
var SIMPLE_TYPE = ["Boolean", "Number", "String", "Undefined", "Null", "Date", "Object"]; | ||
var Logger = /* @__PURE__ */ function() { | ||
@@ -167,2 +169,6 @@ function Logger2(name, config) { | ||
} | ||
var objType = Object.prototype.toString.call(obj).slice(8, -1); | ||
if (!SIMPLE_TYPE.includes(objType)) { | ||
return objType; | ||
} | ||
if (depth > maxDepth) { | ||
@@ -169,0 +175,0 @@ return void 0; |
{ | ||
"name": "xgplayer-streaming-shared", | ||
"version": "3.0.0-next.25", | ||
"version": "3.0.0-next.26", | ||
"main": "dist/index.min.js", | ||
@@ -5,0 +5,0 @@ "module": "es/index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
823733
4707