Skip to content

Commit

Permalink
version up, passport & dl num generate fun added
Browse files Browse the repository at this point in the history
  • Loading branch information
satya319 committed Mar 27, 2022
1 parent 57a2ca1 commit ddf590e
Show file tree
Hide file tree
Showing 9 changed files with 600 additions and 554 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/node_modules
copyed.js
data.js

15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Pirated-Data
</h1>

[![CodeFactor](https://www.codefactor.io/repository/github/satya319/pirated-data/badge)](https://www.codefactor.io/repository/github/satya319/pirated-data)
![CodeFactor](https://www.codefactor.io/repository/github/satya319/pirated-data/badge/main)

**Install the package via npm**
```
Expand All @@ -25,6 +25,8 @@ npm i pirated-data
- [User Id](#User-Id)
- [Password](#Password)
- [PanCard ID](#PanCard-ID)
- [Passport Number](#Passport-Number)
- [Driving license number](#Driving-license-number)
- [Financial card](#Financial-card)
- [Card Number](#Card-Number)
- [Card Holder Name](#Card-Holder-Name)
Expand Down Expand Up @@ -79,9 +81,6 @@ var card = userData.financialCardGenerator();
const userData = require('pirated-data');
var bnkName = userData.bankNameGenerator();
// For getting AadharCard number
const userData = require('pirated-data');
var aadhar = userData.aadharNumberGenerator();
Expand All @@ -105,6 +104,14 @@ var pwd = userData.password(10);
var id = userData.panCardId();
console.log(id);
/*For getting passport number */
const passNum = userData.passportNumber();
console.log(passNum);
/*For getting DL number */
const dl = userData.drivinglicenseGenerator();
console.log(dl);
/* For generating Gendor of an user */
const userData = require('pirated-data');
var gender = userData.genderGenerator();
Expand Down
15 changes: 15 additions & 0 deletions package/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
ISC License

Copyright (c) 2016, Internet Systems Consortium, Inc. ("ISC")

Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 changes: 12 additions & 2 deletions package/dataProvider.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ddf590e

Please sign in to comment.