converter/src/app/converter/uricomponentdecoder.js

17 lines
510 B
JavaScript
Raw Normal View History

"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;