rut-helpers
v0.1.1
Published
Validate and format strings to RUT (Chilean DNI)
Downloads
8,516
Keywords
Readme
Rut Helpers
A small collection of helpers to validate and format strings to RUT (Chilean DNI).
Installation
npm install rut-helpers --save
or with Yarn
yarn add rut-helpers
Use
// You can import everything
import * as rutHelpers from 'rut-helpers';
// Or import only what you need.
import { rutValidate, rutFormat } from 'rut-helpers';
// Or with node
var rutHelpers = require('rut-helpers');
Validating RUTs
rutHelpers.rutValidate('THIS IS A RUT');
// false
rutHelpers.rutValidate('7.618.285-K');
// true
rutHelpers.rutValidate('7618285K');
// true
Formatting strings as RUTs
rutHelpers.rutFormat('7618285K');
// 7.618.285-K
Cleaning RUTs
rutHelpers.rutClean('7.618.285-K');
// 7618285K
Contributing
If you want to add functionality please go to the contributing
Credits
Thank you contributors!
rut-helpers is maintained by platanus.
License
Potassium is © 2017 platanus, spa. It is free software and may be redistributed under the terms specified in the LICENSE file.