Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jlobos/rut.js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.2
Choose a base ref
...
head repository: jlobos/rut.js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.0
Choose a head ref
  • 17 commits
  • 7 files changed
  • 3 contributors

Commits on Apr 6, 2020

  1. add getDigit function

    this function is for get the verificator digit of rut
    example: 
    getDigit(19045738) return 9
    getDigit("19045738") return 9
    jhonnattan123 authored Apr 6, 2020
    Copy the full SHA
    be871a2 View commit details

Commits on Apr 23, 2020

  1. Merge pull request #18 from jhonnattan123/jhonnattan

    add getDigit function
    jlobos authored Apr 23, 2020
    Copy the full SHA
    b32a28d View commit details

Commits on Jul 17, 2020

  1. Copy the full SHA
    e523b9b View commit details

Commits on Feb 18, 2021

  1. Merge pull request #19 from Ukarus/bugfix/validation_with_0

    bugfix: does not validate ruts that starts with 0
    jlobos authored Feb 18, 2021
    Copy the full SHA
    bc48acd View commit details
  2. update dependencies

    jlobos committed Feb 18, 2021
    Copy the full SHA
    7f22ceb View commit details
  3. refactoring of getDigit

    jlobos committed Feb 18, 2021
    Copy the full SHA
    780b9f4 View commit details
  4. Copy the full SHA
    5a6da3f View commit details
  5. remove extra semicolon

    jlobos committed Feb 18, 2021
    Copy the full SHA
    ee02f8c View commit details
  6. move to GitHub Actions

    jlobos committed Feb 18, 2021
    Copy the full SHA
    8212cd4 View commit details
  7. update readme.md

    jlobos committed Feb 18, 2021
    Copy the full SHA
    e98d52d View commit details
  8. version of node to >= 10

    jlobos committed Feb 18, 2021
    Copy the full SHA
    0168421 View commit details
  9. update author of package.json

    jlobos committed Feb 18, 2021
    Copy the full SHA
    d06ab5f View commit details
  10. add getCheckDigit to .d.ts

    jlobos committed Feb 18, 2021
    Copy the full SHA
    4ec1fec View commit details
  11. fix typo

    jlobos committed Feb 18, 2021
    Copy the full SHA
    3f0bd77 View commit details
  12. 1.1.0

    jlobos committed Feb 18, 2021
    Copy the full SHA
    2117ee9 View commit details
  13. Merge pull request #20 from jlobos/refactoring

    Refactoring
    jlobos authored Feb 18, 2021
    Copy the full SHA
    8f16cdf View commit details
  14. 2.0.0

    jlobos committed Feb 18, 2021
    Copy the full SHA
    a55a466 View commit details
Showing with 117 additions and 42 deletions.
  1. +18 −0 .github/workflows/main.yml
  2. +0 −11 .travis.yml
  3. +3 −1 index.d.ts
  4. +43 −10 index.js
  5. +8 −5 package.json
  6. +9 −10 readme.md
  7. +36 −5 test.js
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

4 changes: 3 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -2,4 +2,6 @@ export function clean(rut: string): string;

export function validate(rut: string): boolean;

export function format(rut: string): string;
export function format(rut: string): string;

export function getCheckDigit(rut: string): string;
53 changes: 43 additions & 10 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict'

function clean (rut) {
return typeof rut === 'string'
? rut.replace(/^0+|[^0-9kK]+/g, '').toUpperCase()
@@ -10,34 +8,69 @@ function validate (rut) {
if (typeof rut !== 'string') {
return false
}

// if it starts with 0 we return false
// so a rut like 00000000-0 will not pass
if (/^0+/.test(rut)) {
return false
}

if (!/^0*(\d{1,3}(\.?\d{3})*)-?([\dkK])$/.test(rut)) {
return false
}

rut = clean(rut)

var t = parseInt(rut.slice(0, -1), 10)
var m = 0
var s = 1
let t = parseInt(rut.slice(0, -1), 10)
let m = 0
let s = 1

while (t > 0) {
s = (s + (t % 10) * (9 - m++ % 6)) % 11
s = (s + (t % 10) * (9 - (m++ % 6))) % 11
t = Math.floor(t / 10)
}

var v = s > 0 ? '' + (s - 1) : 'K'
const v = s > 0 ? '' + (s - 1) : 'K'
return v === rut.slice(-1)
}

function format (rut) {
rut = clean(rut)

var result = rut.slice(-4, -1) + '-' + rut.substr(rut.length - 1)
for (var i = 4; i < rut.length; i += 3) {
let result = rut.slice(-4, -1) + '-' + rut.substr(rut.length - 1)
for (let i = 4; i < rut.length; i += 3) {
result = rut.slice(-3 - i, -i) + '.' + result
}

return result
}

module.exports = { validate: validate, clean: clean, format: format }
function getCheckDigit (input) {
const rut = Array.from(clean(input), Number)

if (rut.length === 0 || rut.includes(NaN)) {
throw new Error(`"${input}" as RUT is invalid`)
}

const modulus = 11
const initialValue = 0
const sumResult = rut
.reverse()
.reduce(
(accumulator, currentValue, index) =>
accumulator + currentValue * ((index % 6) + 2),
initialValue
)

const checkDigit = modulus - (sumResult % modulus)

if (checkDigit === 10) {
return 'K'
} else if (checkDigit === 11) {
return '0'
} else {
return checkDigit.toString()
}
}

module.exports = { validate, clean, format, getCheckDigit }
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
{
"name": "rut.js",
"version": "1.0.2",
"version": "2.0.0",
"description": "Sencilla y pequeña libreria para validar y dar formato al RUT",
"license": "MIT",
"repository": "jlobos/rut.js",
"author": "Jesus Lobos <jlobitu@gmail.com> (https://jlobos.com/)",
"author": {
"name": "Jesus Lobos",
"email": "jlobitu@gmail.com"
},
"main": "index.js",
"scripts": {
"test": "standard && ava"
},
"engines": {
"node": ">=4"
"node": ">=10"
},
"files": [
"index.js",
@@ -24,7 +27,7 @@
"browser"
],
"devDependencies": {
"ava": "^2.3.0",
"standard": "^14.1.0"
"ava": "^3.15.0",
"standard": "^16.0.3"
}
}
19 changes: 9 additions & 10 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# rut.js 🇨🇱

[![Build Status](https://travis-ci.org/jlobos/rut.js.svg?branch=master)](https://travis-ci.org/jlobos/rut.js)
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
Sencilla y pequeña libreria para validar y dar formato al RUT. Funciona en Node.js y Navegadores (Webpack, Browserify, etc.)

Sencilla y pequeña libreria para validar y dar formato al RUT. Funciona en Node.js y Navegadores (Webpack, Browserify)

> Utilizada en producción para manejar mas de 13 millones de chilenos en [Rutify – Rutificador](https://rutify.cl/)
> Utilizada en producción para manejar mas de 13 millones de chilenos en [~Rutify – Rutificador~](https://rutify.cl/)
```js
const { validate, clean, format } = require('rut.js')
const { validate, clean, format, getCheckDigit } = require('rut.js')

// true
validate('18.972.631-7')
@@ -48,6 +45,12 @@ format('18.972.631-7') // '18.972.631-7'
format('189726317') // '18.972.631-7'
format('18*972*631*7') // '18.972.631-7'
format('9068826-k') // '9.068.826-K'

/**
* Obtener el dígito verificador
*/
getCheckDigit('18.972.631') // '7'
getCheckDigit('9068826') // 'K'
```

## Instalación
@@ -62,7 +65,3 @@ npm install --save rut.js
npm install
npm test
```

## License

MIT © [Jesus Lobos](https://jlobos.com/)
41 changes: 36 additions & 5 deletions test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import test from 'ava'
import { clean, validate, format } from './index'
const test = require('ava')
const { clean, validate, format, getCheckDigit } = require('./index')

test('clean', t => {
test('clean', (t) => {
t.is(clean('189726317'), '189726317')
t.is(clean('18.972.631-7'), '189726317')
t.is(clean('12.345.678-k'), '12345678K')
@@ -10,7 +10,7 @@ test('clean', t => {
t.is(clean('00000189726317'), '189726317')
})

test('validate', t => {
test('validate', (t) => {
t.true(validate('18.972.631-7'))
t.true(validate('18972631-7'))
t.true(validate('189726317'))
@@ -30,9 +30,40 @@ test('validate', t => {
t.false(validate(0))
})

test('format', t => {
test('format', (t) => {
t.is(format('18.972.631-7'), '18.972.631-7')
t.is(format('189726317'), '18.972.631-7')
t.is(format('18*972*631*7'), '18.972.631-7')
t.is(format('9068826-k'), '9.068.826-K')
})

test('does not validate rut with 0 on most right digit', t => {
t.false(validate('00.000.000-0'))
t.false(validate('00000000-0'))
t.false(validate('0000000000000000000000-0'))
})

test('getCheckDigit', (t) => {
t.is(getCheckDigit('18.657.499-'), '0')
t.is(getCheckDigit('6.383.287'), '1')
t.is(getCheckDigit('13.466.350'), '2')
t.is(getCheckDigit('3,966,753'), '3')
t.is(getCheckDigit('4132650'), '6')
t.is(getCheckDigit('18972631'), '7')
t.is(getCheckDigit('9068826'), 'K')
t.is(getCheckDigit('14774764'), '0')
})

test('getCheckDigit: pass character like a RUT', (t) => {
const { message } = t.throws(() => {
getCheckDigit('Felipe Camiroaga')
})
t.is(message, '"Felipe Camiroaga" as RUT is invalid')
})

test('getCheckDigit: pass 0 like a RUT', (t) => {
const { message } = t.throws(() => {
getCheckDigit(0)
})
t.is(message, '"0" as RUT is invalid')
})