Awesome
info-rut
Get person or enterprise from a valid RUT or full name
Installation
npm i -S info-rut
Use
const infoRut = require('info-rut')
const rut = '11111111-1'
infoRut.getPersonByRut(rut).then(console.log).catch(console.error)
infoRut.getEnterpriseByRut(rut).then(console.log).catch(console.error)
const name = 'juan perez'
infoRut.getPersonByName(name).then(console.log).catch(console.error)
infoRut.getEnterpriseByName(name).then(console.log).catch(console.error)