Allow your js functions to support implicit template string calls
npm i decode-template-string
importdecodefrom'decode-template-string';constdecode=require('decode-template-string');// Support for regular functionsfunctionprint(){letstr=decode(arguments)console.log(str)}// Support for arrow functionsconstprint=(...args)=>{letstr=decode(args)console.log(str);}// Now you can call your function this way👇letname="HMYang33";print`My name is ${name}`;