"use strict"; var URIComponentDecoder = (function () { function URIComponentDecoder() { } URIComponentDecoder.prototype.getDisplayname = function () { return "Decode URI component"; }; URIComponentDecoder.prototype.getId = function () { return "uricomponentdecode"; }; URIComponentDecoder.prototype.convert = function (input) { return decodeURIComponent(input); }; return URIComponentDecoder; }()); exports.URIComponentDecoder = URIComponentDecoder;