class MD5Hasher extends Converter { constructor() { super("MD5 Hasher", [ { label : "Hash", conversionFunction : (d) => md5(d) }, ]); ModuleController.loadModule(ModuleController.MODULES.md5); this.outputs[0].type = "string"; } }