Created
December 8, 2021 23:52
-
-
Save monkpit/9808b9f9f0a6e62367bd0398eee5d3d9 to your computer and use it in GitHub Desktop.
Revisions
-
monkpit renamed this gist
Dec 8, 2021 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
monkpit created this gist
Dec 8, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ const R = require('ramda'); const mergeExistingProps = (target, updater) => { const targetClone = R.clone(target); for (const prop in targetClone) { if (Object.prototype.hasOwnProperty.call(updater, prop)) { targetClone[prop] = updater[prop]; } } return targetClone; }; module.exports = mergeExistingProps;