fake-identity-generator
v1.0.5
Published
Generate a random identity, detailing an extensive amount of information (gender, title, first name, last name, age, email, address, city, country), with this easy-to-use package.
Downloads
7
Maintainers
Readme
Identity Generator
Generate a random identity, detailing an extensive amount of information (gender, title, first name, last name, age, email, address, city, country), with this easy-to-use package.
Example
const fakeIdentityGenerator = require("fake-identity-generator")
fakeIdentityGenerator.generate()
.then(r => console.log(r))
.catch(e => console.error(e))
Response
{
gender: "male",
title: "Mr",
first_name: "John",
last_name: "Doe",
age: 39,
email: "[email protected]",
door_number: 64,
street: "Zoo Lane",
city: "London",
country: "England"
}