last-typed-letter-password
Version:
Show the last typed letter in the password field with input type as password.
12 lines (8 loc) • 339 B
Markdown
# Only Last Typed Letter Visible in Password Field
# My Package: https://www.npmjs.com/package/last-typed-letter-password
# How to use it?
```js live = true
import { lastTyped } from 'last-typed-letter-password';
const yourInputField = document.getElementById('_yourInputFieldId');
lastTyped(yourInputField);
```