initial commit - far from runnable
This commit is contained in:
commit
db057ce342
8614 changed files with 1032171 additions and 0 deletions
13
node_modules/rxjs/dist/esm/internal/operators/elementAt.js
generated
vendored
Normal file
13
node_modules/rxjs/dist/esm/internal/operators/elementAt.js
generated
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { ArgumentOutOfRangeError } from '../util/ArgumentOutOfRangeError';
|
||||
import { filter } from './filter';
|
||||
import { throwIfEmpty } from './throwIfEmpty';
|
||||
import { defaultIfEmpty } from './defaultIfEmpty';
|
||||
import { take } from './take';
|
||||
export function elementAt(index, defaultValue) {
|
||||
if (index < 0) {
|
||||
throw new ArgumentOutOfRangeError();
|
||||
}
|
||||
const hasDefaultValue = arguments.length >= 2;
|
||||
return (source) => source.pipe(filter((v, i) => i === index), take(1), hasDefaultValue ? defaultIfEmpty(defaultValue) : throwIfEmpty(() => new ArgumentOutOfRangeError()));
|
||||
}
|
||||
//# sourceMappingURL=elementAt.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue