update kbn-pm dist

This commit is contained in:
spalger 2019-06-06 19:08:32 -07:00
parent cdf0d20a1e
commit 5c090ea285

View file

@ -41487,6 +41487,10 @@ function mixinDeep(target, objects) {
*/
function copy(val, key) {
if (key === '__proto__') {
return;
}
var obj = this[key];
if (isObject(val) && isObject(obj)) {
mixinDeep(obj, val);