mirror of
https://github.com/status-im/react-native.git
synced 2025-01-27 09:45:04 +00:00
[ReactNative] Move merge & mergeInto from downstream to vendor
This commit is contained in:
parent
a39024928e
commit
902af4c729
50
Libraries/vendor/core/merge.js
vendored
Normal file
50
Libraries/vendor/core/merge.js
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
/**
|
||||||
|
* @generated SignedSource<<0e3063b19e14ed191102b1dffe45551f>>
|
||||||
|
*
|
||||||
|
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
* !! This file is a check-in of a static_upstream project! !!
|
||||||
|
* !! !!
|
||||||
|
* !! You should not modify this file directly. Instead: !!
|
||||||
|
* !! 1) Use `fjs use-upstream` to temporarily replace this with !!
|
||||||
|
* !! the latest version from upstream. !!
|
||||||
|
* !! 2) Make your changes, test them, etc. !!
|
||||||
|
* !! 3) Use `fjs push-upstream` to copy your changes back to !!
|
||||||
|
* !! static_upstream. !!
|
||||||
|
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
*
|
||||||
|
* Copyright 2013-2014 Facebook, Inc.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*
|
||||||
|
* @providesModule merge
|
||||||
|
*/
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
var mergeInto = require('mergeInto');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Shallow merges two structures into a return value, without mutating either.
|
||||||
|
*
|
||||||
|
* @param {?object} one Optional object with properties to merge from.
|
||||||
|
* @param {?object} two Optional object with properties to merge from.
|
||||||
|
* @return {object} The shallow extension of one by two.
|
||||||
|
*/
|
||||||
|
var merge = function(one, two) {
|
||||||
|
var result = {};
|
||||||
|
mergeInto(result, one);
|
||||||
|
mergeInto(result, two);
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
|
module.exports = merge;
|
59
Libraries/vendor/core/mergeInto.js
vendored
Normal file
59
Libraries/vendor/core/mergeInto.js
vendored
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
/**
|
||||||
|
* @generated SignedSource<<d3caa35be27b17ea4dd4c76bef72d1ab>>
|
||||||
|
*
|
||||||
|
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
* !! This file is a check-in of a static_upstream project! !!
|
||||||
|
* !! !!
|
||||||
|
* !! You should not modify this file directly. Instead: !!
|
||||||
|
* !! 1) Use `fjs use-upstream` to temporarily replace this with !!
|
||||||
|
* !! the latest version from upstream. !!
|
||||||
|
* !! 2) Make your changes, test them, etc. !!
|
||||||
|
* !! 3) Use `fjs push-upstream` to copy your changes back to !!
|
||||||
|
* !! static_upstream. !!
|
||||||
|
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
*
|
||||||
|
* Copyright 2013-2014 Facebook, Inc.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*
|
||||||
|
* @providesModule mergeInto
|
||||||
|
* @typechecks static-only
|
||||||
|
*/
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
var mergeHelpers = require('mergeHelpers');
|
||||||
|
|
||||||
|
var checkMergeObjectArg = mergeHelpers.checkMergeObjectArg;
|
||||||
|
var checkMergeIntoObjectArg = mergeHelpers.checkMergeIntoObjectArg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Shallow merges two structures by mutating the first parameter.
|
||||||
|
*
|
||||||
|
* @param {object|function} one Object to be merged into.
|
||||||
|
* @param {?object} two Optional object with properties to merge from.
|
||||||
|
*/
|
||||||
|
function mergeInto(one, two) {
|
||||||
|
checkMergeIntoObjectArg(one);
|
||||||
|
if (two != null) {
|
||||||
|
checkMergeObjectArg(two);
|
||||||
|
for (var key in two) {
|
||||||
|
if (!two.hasOwnProperty(key)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
one[key] = two[key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = mergeInto;
|
Loading…
x
Reference in New Issue
Block a user