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 e171d67c55
commit 2fb03be046

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];