turkish-profile
v2.2.0
Published
Random Turkish name/profile generator with realistic probabilities
Downloads
12
Maintainers
Readme
Turkish Profile
Random Turkish profile generator with realistic probabilities, capable of generating names, emails, and passwords either randomly or based on gender
Installation
To install use npm:
npm i turkish-profile
Usage
// const {getFirstName, getLastName, getFullName, getProfile} = require("turkish-profile");
import {getFirstName, getFullName, getLastName, getProfile} from "turkish-profile";
console.log("===== RANDOM =====")
console.log("First Name:", getFirstName());
console.log("Last Name:", getLastName());
console.log("Full Name:", getFullName());
console.log("Profile:", getProfile());
console.log("===== OPTIONS =====")
console.log("First Name:", getFirstName("male"));
console.log("Last Name:", getLastName());
console.log("Full Name:", getFullName("female"));
console.log("Profile:", getProfile("male", 16));
/*
===== RANDOM =====
First Name: ORHAN
Last Name: BEKIROGLU
Full Name: AYSE KULA
Profile: {
firstName: 'AHMET',
lastName: 'ORAK',
fullName: 'AHMET ORAK',
gender: 'male',
username: 'ahmetorak4481',
email: '[email protected]',
password: 'Ob30c80cb'
}
===== OPTIONS =====
First Name: HALIL
Last Name: YARDIMCI
Full Name: ZEYNEP ACAR
Profile: {
firstName: 'FERIDE',
lastName: 'COLAK',
fullName: 'FERIDE COLAK',
gender: 'female',
username: 'feridecolak1516',
email: '[email protected]',
password: 'E07044caaa6717262' // 16 characters
}
*/
License
The MIT License (MIT). Please see License File for more information.