jsCopy

This tag executes JavaScript

Created by: RabihDigital
Installed 1 times

Category: Convert

Created on: Tuesday, January 21, 2025 at 2:21:22 PM

Updated on: Tuesday, January 21, 2025 at 6:20:42 PM

Tag arguments
[]
Code
class jsCopy {
  encode(input) {
     try {
        return String(eval(input));
     } catch(e){
        return String(e);
     }
  }
}