Reflect the value of the input to the value attribute on input event.`
npm install be-valuedhtml
`
Useful for styling, persistence of innerHTML. Works with any element whose string "value" can be determined by doing oElement.value, and which emits event "input" when the value changes. Both "value" and "input" are configurable.
The enhancement continues to honor reset input elements:
`html
`
by intercepting the reset event and implementing that functionality within the enhancement.



Viewing Locally
Any web server that serves static files will do but...
1. Install git.
2. Fork/clone this repo.
3. Install node.
4. Open command window to folder where you cloned this repo.
5. > npm install
6. > npm run serve
7. Open http://localhost:8000 in a modern browser.
Importing in ES Modules:
`JavaScript
import 'be-valued/be-valued.js';
`
Using from CDN:
`html
``