liberapay.com/js/trim.js
2015-05-26 20:21:57 +02:00

5 lines
181 B
JavaScript

// strips Unicode & non-printable characters, then leading/trailing whitespace
Liberapay.trim = function(s) {
return s.replace(/[^\x20-\x7F]/g, '').replace(/^\s+|\s+$/g, '');
}