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

https://github.com/perongh/deno-input

Fix full-width input issue with built-in prompt()
https://github.com/perongh/deno-input

Last synced: about 2 months ago
JSON representation

Fix full-width input issue with built-in prompt()

Awesome Lists containing this project

README

        

# deno-input

Fix full-width input issue with built-in `prompt()`

## usage

```typescript
import { lines } from "./mod.ts";

const { value: nextLine } = await lines.next();
// do something with `nextLine`

for await (const line of lines) {
// do something with `line`
}
```