If by filter you mean something like:
let emitted = false;
obs = obs.filter(x => {
if(emitted) {
return false;
} else {
emitted = true;
return true;
}
});
Filter (in this particular case, check the code above)
Will issue as soon as the first item appears. Will ignore all subsequent paragraphs. Finishes when the source object completes.
in : -1-2-3--|---
out: -1------|---
The first
, . .
in : -1-2-3--|---
out: -1|----------
, .
in : -1-2-3--|---
out: -1-X---------
, ( single , ). .
in : -1------|---
out: --------1|--