This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Service for checking the availability of a given word | |
Splitter.module('Checkers', function(Checkers, Splitter) { | |
var LocalChecker = { | |
comKeyFor: function(compound) { | |
return 'avail/.com/' + compound; | |
}, | |
check: function(compound) { |