Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ five.chinese('financial') // 伍
five.choctaw() // tahlapi
five.croatian() // pet
five.czech() // pět
five.danish() // fem
five.dothraki() // mek
five.dovah() // hen
five.dutch() // vijf
Expand Down
1 change: 1 addition & 0 deletions five.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
five.croatian = function() { return 'pet'; };
five.czech = function() { return 'pět'; };
five.dothraki = function() { return 'mek'; };
five.danish = function() { return 'fem'; };
five.dovah = function() { return 'hen'; };
five.dutch = function() { return 'vijf'; };
five.elvish = function(type) {
Expand Down
1 change: 1 addition & 0 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ assert.equal('tahlapi', five.choctaw(), 'A choctaw five should be tahlapi');
assert.equal('pet', five.croatian(), 'A croatian five should be pet');
assert.equal('pět', five.czech(), 'A czech five should be pět');
assert.equal('mek', five.dothraki(), 'A dothraki five should be mek');
assert.equal('fem', five.danish(), 'A danish five should be fem');
assert.equal('hen', five.dovah(), 'A dovah five should be hen');
assert.equal('vijf', five.dutch(), 'A dutch five should be vijf');
assert.equal('lempë', five.elvish(), 'An elvish five should be lempë');
Expand Down