UNPKG

personal-document-generator

Version:

A simple DNI (spanish ID document number) and NIE (id number for foreing people in spain) generators.

9 lines (6 loc) 255 B
import { expect, test } from 'vitest'; import { getValidDNI, getValidNIE } from './../index.js'; test('should export getValidDNI and getValidNIE', () => { expect(typeof getValidDNI).toBe('function'); expect(typeof getValidNIE).toBe('function'); });