Comparing version 1.2.3 to 1.2.4
{ | ||
"name": "typo-js", | ||
"version": "1.2.3", | ||
"version": "1.2.4", | ||
"description": "A Hunspell-style spellchecker.", | ||
@@ -5,0 +5,0 @@ "main": "typo.js", |
@@ -627,2 +627,6 @@ /* globals chrome: false */ | ||
if (!aWord) { | ||
return false; | ||
} | ||
// Remove leading and trailing whitespace | ||
@@ -629,0 +633,0 @@ var trimmedWord = aWord.replace(/^\s\s*/, '').replace(/\s\s*$/, ''); |
729155
822