Skip to content

Instantly share code, notes, and snippets.

@ahmehri
Created May 31, 2018 17:18
Show Gist options
  • Save ahmehri/48e2c4d52c460c1590695c6c8a349d02 to your computer and use it in GitHub Desktop.
Save ahmehri/48e2c4d52c460c1590695c6c8a349d02 to your computer and use it in GitHub Desktop.
const _ = require('lodash');
function customizer(objValue, srcValue) {
if (_.isArray(objValue)) {
return srcValue;
}
}
var object = { ids: [1] };
var other = { ids: [] };
console.log(_.mergeWith(object, other, customizer));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment