We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db1e5e1 commit a759fd4Copy full SHA for a759fd4
DOM.Barf.js
@@ -49,7 +49,7 @@ var DOM = DOM || {};
49
DOM.Barf = DOM.Barf || {};
50
51
(function(context) {
52
- context.VERSION = "0.1.0";
+ context.VERSION = "0.2.1";
53
54
/*
55
This is the raw input method to barf / spit out a string
@@ -242,7 +242,7 @@ DOM.Barf = DOM.Barf || {};
242
for (key in b) {
243
if (b.hasOwnProperty(key)) {
244
if (typeof a[key] == "object" && typeof b[key] == "object") {
245
- a[key] = merge(a[key], b[key]);
+ a[key] = context.Merge(a[key], b[key]);
246
}
247
else {
248
a[key] = b[key];
0 commit comments