Skip to content

Commit

Permalink
Update changelog, rebuild shim
Browse files Browse the repository at this point in the history
  • Loading branch information
briancavalier committed Apr 27, 2015
1 parent 4e7854b commit d748316
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 3.7.3

* Fix console.log check when using `monitor/console` in IE8.
* Fix issues with webpack environment and fake timers.
* Several community-contributed doc fixes. Thanks!

### 3.7.2

* Republish 3.7.1 npm package: for some reason, `npm publish` did not include the file `poll.js` when publishing 3.7.1
Expand Down
4 changes: 2 additions & 2 deletions es6-shim/Promise.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ define(function(require) {
};

function isNode () {
return typeof process !== 'undefined' && process !== null &&
typeof process.nextTick === 'function';
return typeof process !== 'undefined' &&
Object.prototype.toString.call(process) === '[object process]';
}

function hasMutationObserver () {
Expand Down

0 comments on commit d748316

Please sign in to comment.