fix(core): update
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import * as plugins from './smartrx.plugins';
|
||||
import * as plugins from './smartrx.plugins.js';
|
||||
|
||||
import * as rxjs from './smartrx.plugins.rxjs';
|
||||
import * as rxjs from './smartrx.plugins.rxjs.js';
|
||||
|
||||
/**
|
||||
* ObservableIntake
|
||||
@@ -22,7 +22,7 @@ export class ObservableIntake<T> {
|
||||
private payloadBuffer: any[] = [];
|
||||
|
||||
constructor() {
|
||||
this.observable = rxjs.Observable.create((observerArg: rxjs.Observer<any>) => {
|
||||
this.observable = new rxjs.Observable((observerArg: rxjs.Observer<any>) => {
|
||||
this.observableFunctions.next = (...args: any) => {
|
||||
return observerArg.next(args);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user