Skip to content

Instantly share code, notes, and snippets.

View skarcha's full-sized avatar

Antonio Pérez skarcha

View GitHub Profile
@skarcha
skarcha / validate_spanish_id.js
Last active February 29, 2024 09:24 — forked from afgomez/validate_spanish_id.js
Spanish DNI, CIF, NIE validator
/**
* ValidateSpanishID. Returns the type of document and checks its validity.
*
* Usage:
* ValidateSpanishID( str );
*
* > ValidateSpanishID( '12345678Z' );
* // { type: 'dni', valid: true }
*
* > ValidateSpanishID( 'B83375575' );