1.2.0
Fix full-width input issue with built-in prompt()
Repository
Current version released
2 years ago
Dependencies
other
Versions
deno-input
Fix full-width input issue with built-in prompt()
usage
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`
}