UNPKG

polish-utils

Version:

Lightweight library for extracting data and validating polish identification numbers such as PESEL or NIP

10 lines (9 loc) 211 B
declare class NIP { private readonly valid; private readonly nip; constructor(nip: string); get isValid(): boolean; getIssuingTaxOfficeCode(): string; private validate; } export { NIP };