这是indexloc提供的服务,不要输入任何密码
Skip to content
Open
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
13 changes: 12 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ function is(x) {
"kolmetoista", // Finnish
"treize", // French
"dreizehn", // German
"treiskaideka", // Greek
"triskaideka", // also Greek
"triskaideca", // no one knows how to spell Greek things
"drizäh", // Swiss German
"wa’maH wej" // Klingon
"שלוש עשרה", // Hebrew
Expand Down Expand Up @@ -109,7 +112,15 @@ function is(x) {
"kumi na tatu", // Swahili

// Thirteen pronunciation
"θərˈtiːn"
"θərˈtiːn",

// Numerical Prefixes
"tredec", // Latin prefix
"trideca", // Greek prefix

// Base 13
"tridecimal"

];

if (thirteenStrings.indexOf(('' + x).toLowerCase()) > -1) {
Expand Down