Skip to content
Open
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 @@ -127,6 +127,7 @@ five.slovakian() // päť
five.slovenian() // pet
five.spanish() // cinco
five.swedish() // fem
five.tagalog() // lima
five.tamil() // ஐந்து
five.telugu() // ఐదు
five.thai() // ห้า
Expand Down
1 change: 1 addition & 0 deletions five.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
five.slovenian = function() { return 'pet'; };
five.spanish = function() { return 'cinco'; };
five.swedish = function() { return 'fem'; };
five.tagalog = function() { return 'lima'; };
five.tamil = function() { return 'ஐந்து'; };
five.telugu = function() { return 'ఐదు'; };
five.turkish = function() { return 'beş'; };
Expand Down
1 change: 1 addition & 0 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ assert.equal('päť', five.slovakian(), 'A slovakian five should be päť');
assert.equal('pet', five.slovenian(), 'A slovenian five should be pet');
assert.equal('cinco', five.spanish(), 'A spanish five should be cinco');
assert.equal('fem', five.swedish(), 'A swedish five should be fem');
assert.equal('lima', five.tagalog(), 'A tagalog five should be lima');
assert.equal('ஐந்து', five.tamil(), 'A tamil five should be ஐந்து');
assert.equal('ఐదు', five.telugu(), 'A telugu five should be ఐదు');
assert.equal('ห้า', five.thai(), 'A thai five should be ห้า');
Expand Down