"use strict"; var URIDecoder = (function () { function URIDecoder() { } URIDecoder.prototype.getDisplayname = function () { return "Decode URI"; }; URIDecoder.prototype.getId = function () { return "uridecode"; }; URIDecoder.prototype.convert = function (input) { return decodeURI(input); }; return URIDecoder; }()); exports.URIDecoder = URIDecoder;