diff --git a/lib/utils.js b/lib/utils.js index c738f0e..1af87cb 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -170,6 +170,9 @@ exports.mergeClone = function mergeClone(to, from) { while (i--) { key = keys[i]; + if (specialProperties.indexOf(key) !== -1) { + continue; + } if ('undefined' === typeof to[key]) { to[key] = clone(from[key]); } else {