This repository has been archived by the owner on Jul 24, 2019. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently by requiring `phantomjs-prebuilt`, the original Promise is replaced by the `es6-promise` module. In es6-promise v4.0.3 this has been fixed and we should incorporate it. How to reproduce the current behavior? ``` > console.log(Promise) [Function: Promise] > require('phantomjs-prebuilt') > console.log(Promise) { [Function: lib$es6$promise$promise$$Promise] all: [Function: lib$es6$promise$promise$all$$all], race: [Function: lib$es6$promise$promise$race$$race], resolve: [Function: lib$es6$promise$promise$resolve$$resolve], reject: [Function: lib$es6$promise$promise$reject$$reject], _setScheduler: [Function: lib$es6$promise$asap$$setScheduler], _setAsap: [Function: lib$es6$promise$asap$$setAsap], _asap: [Function: asap] } ```
- Loading branch information