method ReadableBase.prototype.drop
Usage in Deno
```typescript import { ReadableBase } from "node:node__stream.d.ts"; ```
ReadableBase.prototype.drop(limit: number,options?: Pick<ArrayOptions, "signal">,): Readable
This method returns a new stream with the first *limit* chunks dropped from the start.
optional
options: Pick<ArrayOptions, "signal">
Readable
a stream with *limit* chunks dropped from the start.