@nxtedition/deepstream.io-client-js 31.0.8 → 31.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -505,13 +505,11 @@ class RecordHandler {
|
|
|
505
505
|
* @returns {rxjs.Observable}
|
|
506
506
|
*/
|
|
507
507
|
_observe(defaults, name, ...args) {
|
|
508
|
-
return new rxjs.Observable((subscriber) =>
|
|
509
|
-
this._subscribe(subscriber, defaults, name, ...args)
|
|
510
|
-
})
|
|
508
|
+
return new rxjs.Observable((subscriber) => this._subscribe(subscriber, defaults, name, ...args))
|
|
511
509
|
}
|
|
512
510
|
|
|
513
511
|
/**
|
|
514
|
-
* @returns {{ unsubscribe:
|
|
512
|
+
* @returns {{ unsubscribe: () => void }}
|
|
515
513
|
*/
|
|
516
514
|
_subscribe(subscriber, defaults, name, ...args) {
|
|
517
515
|
let path
|