mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-09 22:50:21 +08:00
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:
committed by
facebook-github-bot-4
parent
e171d67c55
commit
2fb03be046
@@ -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];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user