@adyllsxn/kwavalidator 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
## Cross-platform validation library for Angolan documents
|
|
2
|
+
|
|
3
|
+
> KwaValidator is a modern and extensible validation library focused on Angolan documents.
|
|
4
|
+
|
|
5
|
+
> Built to be lightweight, fast and framework-independent, allowing integration across multiple ecosystems and programming languages.
|
|
6
|
+
|
|
7
|
+
### Currently Supported
|
|
8
|
+
|
|
9
|
+
- 🇦🇴 Bilhete de Identidade (BI)
|
|
10
|
+
|
|
11
|
+
### Planned Support
|
|
12
|
+
|
|
13
|
+
- NIF
|
|
14
|
+
- Passport
|
|
15
|
+
- Driver License
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
**Node.js
|
|
20
|
+
```javascript
|
|
21
|
+
import { validateBI } from '@adyllsxn/kwavalidator';
|
|
22
|
+
const result = validateBI('123456789LA001');
|
|
23
|
+
|
|
24
|
+
```
|