DataTools3/elements/URLConverter.js

10 lines
281 B
JavaScript

class URLConverter extends Converter {
constructor() {
super("URL Converter", [
{ label : "Encode", conversionFunction : (d) => encodeURIComponent(d) },
{ label : "Decode", conversionFunction : (d) => decodeURIComponent(d) },
]);
this.outputs[0].type = "string";
}
}