A Text Mask addon to format the Chilean National Identifier Number (RUT)
npm install text-mask-rut



A Text Mask addon to format the Chilean National Identifier Number (RUT)
!Demo
``sh`
yarn add text-mask-rut
React Example
`javascript
import React from 'react'
import MaskedInput from 'react-text-mask'
import createRutMask from 'text-mask-rut';
const rutMask = createRutMask();
export default () => (
Vanilla JS Example
`javascript
var myInput = document.querySelector('.maskedInput');vanillaTextMask.maskInput({
inputElement: myInput,
mask: createRutMask(),
});
`Development setup
There isn't additional steps to:
`sh
yarn install
`But always check the tests and lint before to commit or PR
Release History
* 0.0.3
* Extract split functionality
* Reformat for codeclimate* 0.0.2
* Fix UMD build
* Reformat main code
* Add integrations with travis, coveralls, codeclimate and NodeSecurity
* Add example
* Improve README
* 0.0.1
* Work in progress
Licencing
Distributed under the MIT license. See
LICENSE for more information.
Contributing
1. Fork it ()
2. Create your feature branch (
git checkout -b feature/fooBar)
3. Commit your changes (git commit -am 'Add some fooBar')
4. Check the tests and lint (yarn lint && yarn test)
5. Push to the branch (git push origin feature/fooBar`)