Home

Awesome

rutificador Build Status

Get chilean RUT from people's name or vice versa from Rutify – Rutificador.

Install

npm install --save rutificador

Usage

// Packages
const rutify = require('rutificador')

// Search by name
rutify({ name: 'Juán Perez' }).then(juanitos => {
  console.log(juanitos)
})

// Search by RUT
rutify({ rut: 'xxxxxxxxx' }).then(results => {
  console.log(results)
})

API

rutify(opts : Object) => Promise

Related