Skip to content

Commit

Permalink
Added all files: the first true commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidemiceli committed Aug 4, 2016
1 parent 885dc36 commit 2b91cee
Show file tree
Hide file tree
Showing 7 changed files with 77,753 additions and 2 deletions.
27 changes: 25 additions & 2 deletions README.md
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
Loading

0 comments on commit 2b91cee

Please sign in to comment.