Handle Chilean RUT values with ease
import { validate, format } from 'rut.ts'
// Validate any RUT format
validate('12.345.678-5') // β true
// Format with dots and hyphen
format('123456785') // β '12.345.678-5'
// Incremental formatting
format('1234', { incremental: true })
// β '1.234'