console-polyfill
Advanced tools
Comparing version 0.2.3 to 0.3.0
@@ -17,4 +17,4 @@ // Console-polyfill. MIT license. | ||
while (prop = properties.pop()) if (!con[prop]) con[prop] = {}; | ||
while (method = methods.pop()) if (typeof con[method] !== 'function') con[method] = dummy; | ||
while (method = methods.pop()) if (!con[method]) con[method] = dummy; | ||
// Using `this` for web workers & supports Browserify / Webpack. | ||
})(typeof window === 'undefined' ? this : window); |
{ | ||
"name": "console-polyfill", | ||
"version": "0.2.3", | ||
"version": "0.3.0", | ||
"description": "Browser console polyfill. Makes it safe to do console.log()-s etc always.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
1608