2.0.0 • Published 9 years ago

random-romanian-names v2.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

random-romanian-names

return romanian name or all list

Install

$ npm install --save random-romanian-names

Usage

var romanianNames = require('random-romanian-names');
var allNames = romanianNames.all;
var allMale = romanianNames.allMale;
var allFemale = romanianNames.allFemale;
var randomMale = romanianNames.randomMale();
var randomFemale = romanianNames.randomFemale();
var randomName = romanianNames.random();

console.log("List of names: ", allNames);
//=> List of names: ["Adelin", ...  ]

console.log("Random name: ", randomName);
//=> Random name: Catalin

console.log("List of male names: ", allMale);
//=> List of male names: ["Adelin", ...  ]

console.log("List of female names: ", allFemale);
//=> List of female names: ["Adelina", ...  ]

console.log("Random male name: ", randomMale);
//=> Random male name: Filip

console.log("Random female name: ", randomFemale);
//=> Random female name: Sofia
2.0.0

9 years ago

1.1.2

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

10 years ago