GraphReFlyTS

API Reference

skip()

skip: drop the first n DATA values, then pass the rest through.

Import

import { skip } from "@graphrefly/ts/operators";

Signature

function skip(n: number): Operator<S, S>

Parameters

ParameterTypeDescription
nnumbern value used by the helper.

Returns

A Operator<S, S> value.

Example

import { skip } from "@graphrefly/ts/operators";

Source

packages/ts/src/graph/operators.ts