Fix babelHelpers.extend

Summary: public

The recent change to move babelhelpers out of the module broke the extends method.

Reviewed By: spicyj

Differential Revision: D2656448

fb-gh-sync-id: 633433deea00ecb140afbb732bff0599e67b4d41
This commit is contained in:
Tadeu Zagallo 2015-11-14 13:48:09 -08:00 committed by facebook-github-bot-4
parent b7df3ca666
commit ccea74fc87
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@
return obj;
};
babelHelpers._extends = Object.assign || function (target) {
babelHelpers._extends = babelHelpers.extends = Object.assign || function (target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];