Node.js examples for String:URL String
Decode url to string
exports.decode = function (str) { try {/*from ww w. j av a 2s . com*/ return decodeURIComponent(str.replace(/\+/g, ' ')); } catch (e) { return str; } };