Skip to content

Commit afb5ae7

Browse files
authored
Merge pull request #203 from hashplus/patch-1
Update -internal.js
2 parents f97bea0 + 847981a commit afb5ae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/es6-promise/-internal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function handleOwnThenable(promise, thenable) {
8484
function handleMaybeThenable(promise, maybeThenable, then) {
8585
if (maybeThenable.constructor === promise.constructor &&
8686
then === originalThen &&
87-
constructor.resolve === originalResolve) {
87+
maybeThenable.constructor.resolve === originalResolve) {
8888
handleOwnThenable(promise, maybeThenable);
8989
} else {
9090
if (then === GET_THEN_ERROR) {

0 commit comments

Comments
 (0)