Skip to content
This repository was archived by the owner on Jun 26, 2022. It is now read-only.

Commit 8938455

Browse files
committed
Fix stuff for web workers.
1 parent 54f8a62 commit 8938455

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "console-polyfill",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Browser console polyfill. Makes it safe to do console.log()-s etc always.",
55
"main": "index.js",
66
"dependencies": {}

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "console-polyfill",
33
"repo": "paulmillr/console-polyfill",
44
"description": "Browser console polyfill. Makes it safe to do console.log()-s etc always.",
5-
"version": "0.1.0",
5+
"version": "0.1.1",
66
"keywords": ["console", "polyfill"],
77
"dependencies": {},
88
"development": {},

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Console-polyfill. MIT license.
22
// https://github.com/paulmillr/console-polyfill
33
// Make it safe to do console.log() always.
4-
(function (con) {
4+
(function(con) {
55
'use strict';
66
var prop, method;
77
var empty = {};
@@ -12,4 +12,4 @@
1212
'time,timeEnd,trace,warn').split(',');
1313
while (prop = properties.pop()) con[prop] = con[prop] || empty;
1414
while (method = methods.pop()) con[method] = con[method] || dummy;
15-
})(window.console = window.console || {});
15+
})(this.console = this.console || {});

0 commit comments

Comments
 (0)