mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
import {StreamBase} from './base';
|
|
import {NOOP} from '../gems/func';
|
|
|
|
export class NeverStream extends StreamBase {
|
|
|
|
attach(observer) {
|
|
return NOOP;
|
|
}
|
|
}
|
|
|
|
NeverStream.INSTANCE = new NeverStream();
|
|
|