s is undefined in browsers that don't support trim
Closed this issue · 2 comments
mjuniper commented
There is an error at line 338:
else return s.replace(/^\s+/, '').replace(/\s+$/, '');
should be:
else return stuff.replace(/^\s+/, '').replace(/\s+$/, '');
HenrikJoreteg commented
fixed in latest, thanks.
mjuniper commented
Thank you. Great work; I love ICanHaz!