-
-
Notifications
You must be signed in to change notification settings - Fork 316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using in ES6 environment #60
Comments
It's not currently possible, but we could add such support, perhaps by making the modules return a function that takes |
@ForbesLindesay AFAICS, that would work. I'm currently just wrapping my ES6 Promises with Q to get the helper functions such as the ones provided herein. |
You can of course wrap ES6 Promises with then/promise using |
Closing this as a duplicate of #50. |
I'm interested in using this library purely for the superset features. I have an ES6 environment running with Traceur, so I do not need the polyfill.
I notice the extensions are in a separate module but they extend the polyfill’d
Promise
object. In my case, this object has already been polyfill’d and is available atglobal.Promise
.Should I be able to apply these extensions to my existing
Promise
object?The text was updated successfully, but these errors were encountered: