npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@gzanni/rut-utils

v1.0.3

Published

A set of utilities for chilean RUTs

Downloads

7

Readme

rut-utils

Paquete de utilidades para el manejo de RUT chileno. Es compatible con IE10 y node >= 6, no tiene dependencias externas e incluye declaraciones de typescript 😄

Instalación

NPM

npm i @gzanni/rut-utils

Yarn

yarn add @gzanni/rut-utils

API

// Usando un namespace
import rutUtils from '@gzanni/rut-utils'

// Funciones individuales
import { format, isValid } from '@gzanni/rut-utils'

El ejemplo de abajo muestra un caso de uso:

import React, { useState } from 'react'
import { format, isValid } from '@gzanni/rut-utils'

const App = () => {
  const [value, setValue] = useState('')

  const handleChange = (event) => {
    event.persist()

    setValue(format(event.target.value))
  }

  const handleSubmit = (event) => {
    event.preventDefault()

    if (isValid(value)) {
      // ...haz lo que sea con el rut válido
    }
  }

  return (
    <form onSubmit={handleSubmit}>
      <input onChange={handleChange} value={value} />
    </form>
  )
}

Dándole formato a un rut

format(input: ValidInput, formatType?: Format): string

Limpia cualquier caracter no numérico distinto de K o k y formatea la entrada.

Argumentos
  • input (ValidInput): La entrada a formatear
  • formatType (Format): String opcional que determina el formato a aplicar. Por defecto es standard.
Retorna

String formateado según el formatType dado.

format('112223334') // => '11.222.333-4'
format(112223334) // => '11.222.333-4'
format('112223334', 'dashOnly') // => '11222333-4'
format('11.222.333-4', 'noSymbols') // => '112223334'

// Elimina los caracteres no válidos
format('11aaa2223334') // => '11.222.333-4'
Consideraciones

K y k son caracteres válidos, por lo que no son descartados al formatear a pesar de no estar en la posición correcta.

format('11kkk3334') // => '11.kkk.333-4'

Para evitar este caso, se puede utilizar format en conjunto a isFormatValid:

const handleChange = event => {
  event.persist()
  const formatted = format(event.target.value, 'standard')

  if (isFormatValid(formatted, 'standard') {
    setValue(formatted)
  }
}

isFormatValid(input: ValidInput, formatType?: Format & 'any'): boolean

Valida que la entrada tenga el formato especificado, o que cumpla con alguno de los formatos válidos.

Argumentos
  • input (ValidInput): La entrada a validar
  • formatType (Format & 'any'): String opcional que determina el formato a validar. El valor por defecto any es inclusivo, es decir, basta con que la entrada cumpla con al menos uno de los formatos válidos. En cualquier otro caso, la validación será únicamente contra el formato dado.
Retorna

Booleano que representa si el input cumple con el formato dado.

isFormatValid('11222333-4') // => true
isFormatValid('11222333-4', 'standard') // => false
isFormatValid('11222333-4', 'dashOnly') // => true
isFormatValid('11222333-4', 'noSymbols') // => false
Consideraciones

isFormatValid sólo compara el patrón de la entrada, no su contenido.

isFormatValid('aa.bbb.ccc-n') // => true

isValid(input: ValidInput): boolean

Valida que la entrada cumpla con las siguientes características:

  • Sólo contiene caracteres válidos
  • Tiene al menos dos caracteres
  • El último caracter es un dígito verificador válido
Argumentos
  • input (ValidInput): La entrada a validar
Retorna

Booleano que representa la validez de la entrada

isValid('108646292') // => true
isValid('10.864.629-2') // => true
isValid('10864629-2') // => true
isValid('10864629-3') // => false
isValid('11222333-h') // => false
isValid('1') // => false
Consideraciones

isValid no valida largo máximo. En ambientes node, es extremadamente recomendado realizar esta validación para evitar brechas de seguridad ReDoS.

const isRutValid = rut.length <= 20 && isValid(rut)

isValid valida que la entrada sólo tenga caracteres válidos para el rut, pero no su formato.

isValid('10...........864.......629-------2') // => true

Si no se confía en que la entrada ha sido previamente formateada (ej. en un evento onChange), se puede utilizar en conjunto a isFormatValid.

const isRutValid = isFormatValid(rut) && isValid(rut)

toJSON(input: ValidInput, { formatType?: Format & 'any' } = {}): object

Utilidad para obtener un resumen de la entrada.

Argumentos:
  • input (ValidInput): La entrada a resumir
  • formatType (Format & 'any'): String opcional que determina el formato a validar y aplicar. Por defecto es standard.
Retorna:

Un objeto plano con el detalle de la entrada. Utiliza las implementaciones descritas anteriormente para obtener los valores.

toJSON('108646292')
// {
//   digit: '2'
//   formattedValue: '10.864.629-2'
//   isFormatValid: false
//   isValid: true
//   serial: '10864629'
// }

Tipos

ValidInput

Cualquier string o número:

type ValidInput = string | number

Format

Uno de los siguientes valores:

type Format = 'standard' | 'dashOnly' | 'noSymbols'

// 'standard' = 11.222.333-4
// 'dashOnly' = 11222333-4
// 'noSymbols' = 112223334