biofriction-wp-theme/node_modules/rx/ts/core/testing/mockdisposable.ts

10 lines
304 B
TypeScript

// var MockDisposable = Rx.MockDisposable = function (scheduler) {
// this.scheduler = scheduler;
// this.disposes = [];
// this.disposes.push(this.scheduler.clock);
// };
//
// MockDisposable.prototype.dispose = function () {
// this.disposes.push(this.scheduler.clock);
// };