Changelog
1.7.0
deferred.then
is deprecated and will be removed in an upcoming release. Use deferred.promise.then
instead.Changelog
1.6.0
Object.freeze
. Promises are no longer frozen due to a horrendous v8 performance penalty. Read discussion here.
freeze()
will be reintroduced once v8 performance improves.Changelog
1.5.2
npm test
.Changelog
1.5.1
Changelog
1.5.0
deferred
and deferred.resolver
no longer throw when resolved/rejected multiple times. They will return silently as if the they had succeeded. This prevents parties to whom only the resolver
has been given from using try/catch
to determine the state of the associated promise.
Changelog
1.4.3