We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b36c51a commit 9f03146Copy full SHA for 9f03146
lib/store.js
@@ -62,7 +62,12 @@ function MemoryStore () {
62
},
63
update: {
64
value: function (path, data, cb) {
65
- Object.assign(routes[path], data);
+ for (var key in data) {
66
+ if (data.hasOwnProperty(key)) {
67
+ routes[path][key] = data[key];
68
+ }
69
70
+
71
this.notify(cb);
72
}
73
package.json
@@ -26,6 +26,7 @@
26
"files": [
27
"index.js",
28
"lib/configproxy.js",
29
+ "lib/store.js",
30
"lib/trie.js",
31
"lib/error/*.html",
32
"bin/configurable-http-proxy"
test/jasmine.json
@@ -1,6 +1,5 @@
1
{
2
"spec_dir": "test",
3
"stopSpecOnExpectationFailure": false,
4
- "random": false,
5
"spec_files": ["*spec.js"]
6
0 commit comments