Js2Py
Js2Py copied to clipboard
Accessing builtin modules (Eg: crypto.subtle)
Is there any way to access builtin modules, eg: crypto.subtle. Node.js documentation mentions 2 methods:
globalThis. This is not available in js2pyrequire("node:crypto"): As this is not a npm install, this too fails usingjs2py.require
Is there a method to access it via window.crypto.subtle ?