Skip to content

Simple helpers to validate and format strings to RUT (Chilean DNI)

Notifications You must be signed in to change notification settings

vhmartinezm/rut-helpers

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rut Helpers

Build Status

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!

Platanus

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.

About

Simple helpers to validate and format strings to RUT (Chilean DNI)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 62.1%
  • TypeScript 37.9%