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: v2.0.0
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.1.0
Choose a head ref
  • 6 commits
  • 6 files changed
  • 3 contributors

Commits on Mar 18, 2021

  1. Copy the full SHA
    e9499d7 View commit details
  2. Merge pull request #21 from juanbrujo/master

    docs: added ES Modules import and yarn install
    jlobos authored Mar 18, 2021
    Copy the full SHA
    ce3f5b0 View commit details

Commits on Mar 19, 2021

  1. add .DS_Store to .gitignore

    jlobos committed Mar 19, 2021
    Copy the full SHA
    2f629e6 View commit details
  2. Merge pull request #22 from jlobos/kk

    add `.DS_Store` to .gitignore
    jlobos authored Mar 19, 2021
    Copy the full SHA
    114ad6e View commit details

Commits on Jun 8, 2021

  1. + Se agrega opción para formatear rut con o sin puntos

    + Se modifica versión de package.json
    + Se modifica readme.md para ejemplificar nueva funcionalidad
    Azuky committed Jun 8, 2021
    Copy the full SHA
    f4de878 View commit details

Commits on Oct 27, 2021

  1. Merge pull request #23 from Azuky/master

    Nueva opción para formatear rut con o sin puntos
    jlobos authored Oct 27, 2021
    Copy the full SHA
    2cad702 View commit details
Showing with 30 additions and 6 deletions.
  1. +2 −0 .gitignore
  2. +1 −1 index.d.ts
  3. +11 −4 index.js
  4. +1 −1 package.json
  5. +11 −0 readme.md
  6. +4 −0 test.js
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
node_modules

.DS_Store
package-lock.json
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -2,6 +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, options?: { dots: boolean }): string;

export function getCheckDigit(rut: string): string;
15 changes: 11 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
@@ -34,12 +34,19 @@ function validate (rut) {
return v === rut.slice(-1)
}

function format (rut) {
function format (rut, options = {
dots: true
}) {
rut = clean(rut)

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
let result
if (options.dots) {
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
}
} else {
result = rut.slice(0, -1) + '-' + rut.substr(rut.length - 1)
}

return result
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rut.js",
"version": "2.0.0",
"version": "2.1.0",
"description": "Sencilla y pequeña libreria para validar y dar formato al RUT",
"license": "MIT",
"repository": "jlobos/rut.js",
11 changes: 11 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -5,8 +5,12 @@ Sencilla y pequeña libreria para validar y dar formato al RUT. Funciona en Node
> Utilizada en producción para manejar mas de 13 millones de chilenos en [~Rutify – Rutificador~](https://rutify.cl/)
```js
// AMD
const { validate, clean, format, getCheckDigit } = require('rut.js')

// ES2015 Modules
import { validate, clean, format, getCheckDigit } from 'rut.js'

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

// Dots es true por default
format('18.972.631-7', { dots: false }) // '18972631-7'
format('189726317', { dots: false }) // '18972631-7'
format('18*972*631*7', { dots: false }) // '18972631-7'
format('9068826-k', { dots: false }) // '9068826-K'

/**
* Obtener el dígito verificador
*/
@@ -57,6 +67,7 @@ getCheckDigit('9068826') // 'K'

```bash
npm install --save rut.js
yarn add rut.js
```

## Testing
4 changes: 4 additions & 0 deletions test.js
Original file line number Diff line number Diff line change
@@ -35,6 +35,10 @@ test('format', (t) => {
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')
t.is(format('18.972.631-7', { dots: false }), '18972631-7')
t.is(format('189726317', { dots: false }), '18972631-7')
t.is(format('18*972*631*7', { dots: false }), '18972631-7')
t.is(format('9068826-k', { dots: false }), '9068826-K')
})

test('does not validate rut with 0 on most right digit', t => {