Node.js examples for String:Trim
Trim string
function strTrim(str) { var strcatch = String(str); return strcatch.replace(/^\s+|\s+$/gm,''); }