Socket
Socket
Sign inDemoInstall

vconsole

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vconsole - npm Package Compare versions

Comparing version 3.3.3 to 3.3.4

test/async.html

2

CHANGELOG_CN.md
[English](./CHANGELOG.md) | 简体中文
#### V3.3.3 (2019-08-18)
#### V3.3.4 (2019-08-19)

@@ -5,0 +5,0 @@ - 【特性】增加 `%c` 以支持自定义日志样式,详情见 [使用教程](./doc/tutorial_CN.md)。

English | [简体中文](./CHANGELOG_CN.md)
#### V3.3.3 (2019-08-18)
#### V3.3.4 (2019-08-19)

@@ -5,0 +5,0 @@ - [FEATURE] Add `%c` log format to support custom log style, see [Tutorial](./doc/tutorial.md) for more details.

{
"name": "vconsole",
"version": "3.3.3",
"version": "3.3.4",
"description": "A lightweight, extendable front-end developer tool for mobile web page.",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/Tencent/vConsole",

@@ -93,6 +93,6 @@ /*

if (document !== undefined) {
if (document.readyState == 'complete') {
if (document.readyState === 'loading') {
$.bind(window, 'DOMContentLoaded', _onload);
} else {
_onload();
} else {
$.bind(window, 'DOMContentLoaded', _onload);
}

@@ -103,9 +103,9 @@ } else {

let _pollingDocument = function() {
if (!!document && document.readyState == 'complete') {
_timer && clearTimeout(_timer);
_onload();
} else {
_timer = setTimeout(_pollingDocument, 1);
}
};
if (!!document && document.readyState == 'complete') {
_timer && clearTimeout(_timer);
_onload();
} else {
_timer = setTimeout(_pollingDocument, 1);
}
};
_timer = setTimeout(_pollingDocument, 1);

@@ -112,0 +112,0 @@ }

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc