UNPKG

ec-validator-dni

Version:

Validation of Ecuadorian identification documents (ID card and RUC)

13 lines 360 B
import * as index from './../src'; describe('Index.test', () => { test( 'should be export all validations', () => { const expectedExports = [ 'dniValidation', 'isPossiblyValidRuc', 'validateRucByType', 'validateRuc', 'TypeIdentification', ]; expect(Object.keys(index)).toEqual(expectedExports); }); });