HenrikJoreteg/ICanHaz.js

s is undefined in browsers that don't support trim

Closed this issue · 2 comments

There is an error at line 338:

else return s.replace(/^\s+/, '').replace(/\s+$/, '');

should be:

else return stuff.replace(/^\s+/, '').replace(/\s+$/, '');

fixed in latest, thanks.

Thank you. Great work; I love ICanHaz!