@@ -273,11 +273,11 @@ } isValid (sWord) { // checks if sWord is valid (different casing tested if the first letter is a capital) if (!sWord) { - return null; + return true; } if (sWord.includes("'")) { // ugly hack sWord = sWord.replace("'", "’"); } if (this.lookup(sWord)) {