UNPKG

@zodash/idcard

Version:

chinese id card parser, generator and validator

16 lines (15 loc) 284 B
export interface IOptions { /** * Address Code, length 6 */ addressCode?: string; /** * Birthday, length 8 */ birthday?: string; /** * Sex, length 1 */ sex?: string; } export declare function generate(options?: IOptions): string;