(store, transform)
| 152 | } |
| 153 | |
| 154 | bindStore(store, transform) { |
| 155 | const replacing = this._stores.has(store); |
| 156 | if (!replacing) { |
| 157 | channels.incRef(this.name); |
| 158 | if (this._index !== undefined) subscriberCounts[this._index]++; |
| 159 | } |
| 160 | this._stores.set(store, transform); |
| 161 | } |
| 162 | |
| 163 | unbindStore(store) { |
| 164 | if (!this._stores.has(store)) { |