Just checked the latest code in github and it still has this problem.
Also I had a small mistake in my code this line:
if (this.singularizeStore[word]) return this.singularizeStore[word];
should be:
if (typeof this.singularizeStore[word] != 'undefined') return
this.singularizeStore[word];
On Nov 17, 1:17 am, Ryan Johnson <
r...@syntacticx.com> wrote:
> Maybe this is an old build? I remember this issue and thought it had been fixed.
>