Differences From Artifact [ab8a6cc9bc]:
- File graphspell-js/ibdawg.js — part of check-in [d121d08b07] at 2018-04-02 12:01:12 on branch trunk — merge multid: personal dictionary & lexicon editor (user: olr, size: 23513) [annotate] [blame] [check-ins using] [more...]
To Artifact [1351b5e397]:
- File graphspell-js/ibdawg.js — part of check-in [291494dd43] at 2018-04-04 15:10:54 on branch trunk — [graphspell] ibdawg: isValid -> True if word is digit (user: olr, size: 23582) [annotate] [blame] [check-ins using]
︙ | |||
229 230 231 232 233 234 235 236 237 238 239 240 241 242 | 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | + + + | return null; } if (sWord.includes("’")) { // ugly hack sWord = sWord.replace("’", "'"); } if (this.lookup(sWord)) { return true; } if (sWord.gl_isDigit()) { return true; } if (sWord.charAt(0).gl_isUpperCase()) { if (sWord.length > 1) { if (sWord.gl_isTitle()) { return !!this.lookup(sWord.toLowerCase()); } if (sWord.gl_isUpperCase()) { |
︙ |