本文整理匯總了TypeScript中xstream.empty函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript empty函數的具體用法?TypeScript empty怎麽用?TypeScript empty使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了empty函數的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: constructor
constructor(private _mockConfig: MockConfig) {
if (_mockConfig['elements']) {
this._elements = _mockConfig['elements'] as FantasyObservable;
} else {
this._elements = adapt(xs.empty());
}
}
示例2: constructor
constructor(private _mockConfig: MockConfig) {
if (_mockConfig.elements) {
this._elements = _mockConfig.elements as FantasyObservable<any>;
} else {
this._elements = adapt(xs.empty());
}
}
示例3: constructor
constructor(private _streamAdapter: StreamAdapter,
private _mockConfig: MockConfig) {
if (_mockConfig.elements) {
this._elements = _mockConfig.elements;
} else {
this._elements = _streamAdapter.adapt(xs.empty(), xsSA.streamSubscribe);
}
}
示例4: switch
.map((e: KeyboardEvent) => {
switch (e.keyCode) {
case 188:
return xs.of('decrement');
case 190:
return xs.of('increment');
default:
return xs.empty();
}
}).flatten()
示例5: events
public events(eventType: string, options?: EventsFnOptions): any {
const streamForEventType = this._mockConfig[eventType] as any;
const out: DevToolEnabledSource & FantasyObservable = adapt(
streamForEventType || xs.empty(),
);
out._isCycleSource = 'MockedDOM';
return out;
}
示例6: child
.map(i => {
if (i % 2 === 1) {
return child(sources, i);
} else {
return {
HTTP: xs.empty(),
DOM: xs.of(''),
};
}
});
示例7: it
it('propagates errors', done => {
const Time = timeDriver(xs.empty());
xs.throw(new Error())
.compose(Time.debounce(1))
.addListener({
error(err: Error) {
done();
Time.dispose();
},
});
});
示例8: events
public events(eventType: string, options: EventsFnOptions): any {
const mockConfig = this._mockConfig;
const keys = Object.keys(mockConfig);
const keysLen = keys.length;
for (let i = 0; i < keysLen; i++) {
const key = keys[i];
if (key === eventType) {
return mockConfig[key];
}
}
return this._streamAdapter.adapt(xs.empty(), xsSA.streamSubscribe);
}