HarlonWang / quickjs-wrapper

QuickJS wrapper for Android/JVM

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Console.log support

HarlonWang opened this issue · comments

IMG_20221209_111253
I just write simple one

这个比较简单,需要适配掉其他方法 ,例如:

const console = {
    log: (...args) => printLog("log", ...args),
    debug: (...args) => printLog("debug", ...args),
    info: (...args) => printLog("info", ...args),
    warn: (...args) => printLog("warn", ...args),
    error: (...args) => printLog("error", ...args)
};

感謝大佬提供 😂
等你內置了💪

大佬就是大佬