An open API service indexing awesome lists of open source software.

https://github.com/jwebcoder/deno_readline

Reads a file line by line on Deno
https://github.com/jwebcoder/deno_readline

Last synced: about 1 year ago
JSON representation

Reads a file line by line on Deno

Awesome Lists containing this project

README

          

# Deno Readline

Reads a file line by line

## Usage
```typescript
import { readline } from "https://raw.githubusercontent.com/JWebCoder/deno_readline/master/mod.ts";

for await (const line of readline('./mod.ts')) {
console.log('line', line);
}
```