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

Commit a3e2100

Browse files
authored
Merge pull request #26 from rollbar/fix-ie8-compatibility
reverted for backwards compatibility with ie8
2 parents 37f0fb9 + eab6ff9 commit a3e2100

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
'groupCollapsed,groupEnd,info,log,markTimeline,profile,profiles,profileEnd,' +
1515
'show,table,time,timeEnd,timeline,timelineEnd,timeStamp,trace,warn').split(',');
1616
while (prop = properties.pop()) if (!con[prop]) con[prop] = {};
17-
while (method = methods.pop()) if (typeof con[method] !== 'function') con[method] = dummy;
17+
while (method = methods.pop()) if (!con[method]) con[method] = dummy;
1818
// Using `this` for web workers & supports Browserify / Webpack.
1919
})(typeof window === 'undefined' ? this : window);

0 commit comments

Comments
 (0)