converter/src/app/converter/uridecoder.js

17 lines
410 B
JavaScript

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