File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ ### 3.7.3
2+
3+ * Fix console.log check when using ` monitor/console ` in IE8.
4+ * Fix issues with webpack environment and fake timers.
5+ * Several community-contributed doc fixes. Thanks!
6+
17### 3.7.2
28
39* Republish 3.7.1 npm package: for some reason, ` npm publish ` did not include the file ` poll.js ` when publishing 3.7.1
Original file line number Diff line number Diff line change @@ -247,8 +247,8 @@ define(function(require) {
247247 } ;
248248
249249 function isNode ( ) {
250- return typeof process !== 'undefined' && process !== null &&
251- typeof process . nextTick === 'function ' ;
250+ return typeof process !== 'undefined' &&
251+ Object . prototype . toString . call ( process ) === '[object process] ' ;
252252 }
253253
254254 function hasMutationObserver ( ) {
You can’t perform that action at this time.
0 commit comments