PATH:
usr
/
local
/
lib
/
node_modules
/
ghost-cli
/
node_modules
/
rxjs
/
src
/
internal
import { Observer } from './types'; import { config } from './config'; import { hostReportError } from './util/hostReportError'; export const empty: Observer<any> = { closed: true, next(value: any): void { /* noop */}, error(err: any): void { if (config.useDeprecatedSynchronousErrorHandling) { throw err; } else { hostReportError(err); } }, complete(): void { /*noop*/ } };
[+]
scheduled
[-] Observable.ts
[edit]
[+]
..
[-] BehaviorSubject.ts
[edit]
[+]
testing
[-] Scheduler.ts
[edit]
[-] AsyncSubject.ts
[edit]
[+]
observable
[-] Subscription.ts
[edit]
[-] ReplaySubject.ts
[edit]
[-] InnerSubscriber.ts
[edit]
[+]
scheduler
[+]
symbol
[-] Subject.ts
[edit]
[-] SubjectSubscription.ts
[edit]
[-] config.ts
[edit]
[+]
util
[-] OuterSubscriber.ts
[edit]
[-] Operator.ts
[edit]
[-] Subscriber.ts
[edit]
[-] Rx.ts
[edit]
[-] types.ts
[edit]
[+]
operators
[-] Notification.ts
[edit]
[-] umd.ts
[edit]
[-] Observer.ts
[edit]