@szilanor/stream
    Preparing search index...

    Function skipAsync

    • Returns an AsyncOperationFunction that skips the given amount of entries of the source Iterable.

      Type Parameters

      • T

        The type of the elements in the source Iterable.

      Parameters

      • count: number

        The amount of entries to skip.

      Returns AsyncOperationFunction<T, T>

      An AsyncOperationFunction that skips the given amount of entries of the source Iterable.

      const result = skipAsync<number>([1, 2, 3], 2);
      console.log(result); // [3]