We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea3a569 commit d1dfc4bCopy full SHA for d1dfc4b
1 file changed
src/jsmind.util.js
@@ -74,6 +74,9 @@ export const util = {
74
},
75
merge: function (b, a) {
76
for (var o in a) {
77
+ if (o === '__proto__' || o === 'constructor' || o === 'prototype') {
78
+ continue;
79
+ }
80
if (o in b) {
81
if (
82
typeof b[o] === 'object' &&
0 commit comments