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 31a2114 commit 7b3f0b7Copy full SHA for 7b3f0b7
src/index.js
@@ -37,16 +37,14 @@ export default {
37
if (!fromVal) return toVal
38
39
const toData = Object.assign({}, omit(toVal, [
40
- 'subscribe',
41
- 'data',
+ '$subscribe',
42
]), toVal.data)
43
const fromData = Object.assign({}, omit(fromVal, [
44
45
46
]), fromVal.data)
47
48
return Object.assign({
49
- subscribe: merge(toVal.subscribe, fromVal.subscribe),
+ $subscribe: merge(toVal.$subscribe, fromVal.$subscribe),
50
}, merge(toData, fromData))
51
}
52
0 commit comments