-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added all files: the first true commit.
- Loading branch information
1 parent
885dc36
commit 2b91cee
Showing
7 changed files
with
77,753 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,25 @@ | ||
# gender-detection | ||
Determine a person's gender based on his/her first name. | ||
# Gender Detection | ||
|
||
## Description | ||
A node.js module to determine a person's gender based on his/her first name. | ||
It works also for many languages other than english. | ||
|
||
## Example | ||
```javascript | ||
// Require gender detection module | ||
var gender = require('gender-detection'); | ||
|
||
// Use it to detect the gender: | ||
g = gender.detect('Tim Johnson'); | ||
// "male" | ||
|
||
g = gender.detect('Holly'); | ||
// "female" | ||
|
||
g = gender.detect('GhJGhgj') | ||
// "unknown" | ||
``` | ||
|
||
## Installation | ||
|
||
$ npm install git+https://[email protected]/davidemiceli/gender-detection.git |
Oops, something went wrong.