Skip to content

Commit

Permalink
fix(symbol): fix Object.defineProperties
Browse files Browse the repository at this point in the history
  • Loading branch information
gheoan committed Mar 25, 2016
1 parent 80b6ee5 commit f548033
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/symbol.js
Expand Up @@ -24,7 +24,7 @@ import {PLATFORM} from 'aurelia-pal';
create = Object.create,
keys = Object.keys,
defineProperty = Object[DP],
defineProperties = Object[DPies],
$defineProperties = Object[DPies],
descriptor = gOPD(Object, GOPN),
ObjectProto = Object.prototype,
hOP = ObjectProto.hasOwnProperty,
Expand Down Expand Up @@ -145,8 +145,8 @@ import {PLATFORM} from 'aurelia-pal';
$defineProperty(o, uid, descriptors[uid]);
}
});
} else {
defineProperties(o, descriptors);
} else {
$defineProperties(o, descriptors);
}
return o;
};
Expand Down

0 comments on commit f548033

Please sign in to comment.