Skip to content

Commit d748316

Browse files
committed
Update changelog, rebuild shim
1 parent 4e7854b commit d748316

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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

es6-shim/Promise.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 () {

0 commit comments

Comments
 (0)