Skip to content

Instantly share code, notes, and snippets.

@themakunga
themakunga / README.md
Last active October 20, 2024 20:30
Validador de RUN chileno en TypeScript

Validador de RUN chile en Typescript

conmo usarlo

solo rut

import { validateRUN } from 'your/dir/file.ts';

const run: string = '11.111.111-1'; // also can be '11111111-1' or '111111111'
const response: boolean = validateRUN({run});