Jacob Hummer
Jacob Hummer
this would be beneficial to allow forcing color to be enabled in ci like github actions which arent tty but still can show colors related: https://github.com/pypa/pip/issues/10909 https://github.com/Textualize/rich/issues/2425 https://github.com/wntrblm/nox/issues/502 https://github.com/python-poetry/cleo/issues/341 https://github.com/astral-sh/ruff/issues/5499...
An interesting thing is that `import("https://esm.sh/@nodefill/primordials")` works just fine.  ...but the sub-path-thingie imports like `import("@nodefill/primordials/ArrayIsArray.js")` don't.  Another interesting thing is that https://esm.run works for all of these. ...
https://github.com/nodefill/primordials/releases/tag/v3.1.0 I made it work with esm.sh by manually duplicating the export names so that it got picked up by the CJS lexer. However, this **still doesn't recognize `eval`** which...
Almost. The named `eval` export still fails. 
i'm using plain old markdown 😉 example: ``` # Uncaught TypeError: f is not defined ~~~ ~~~ reported by gh action test runner test.yml date ... on blah blah OS...
looks like this is where `process` is not defined https://github.com/denoland/deno/blob/24bdc1de33494bc1619bfebea826ab08ffb74a01/ext/node/polyfills/internal/util/parse_args/parse_args.js#L53
Are you per chance on Windows using `cmd.exe` or PowerShell? They don't seem to have good emoji support. I've found that the newer fancy [Windows Terminal](https://apps.microsoft.com/store/detail/windows-terminal/9N0DX20HK701?hl=en-us&gl=us) works much better with...
> they are not actually static Both Deno and Node.js disagree with you 🤣 Even if the export will end up as `undefined`, it's still a _named export_. https://github.com/nodejs/cjs-module-lexer ```js...
Actually, that still **doesn't work**: Raw text from unpkg: https://unpkg.com/@nodefill/[email protected]/dist/index-browser.js ```js exports.uncurryThis = exports.applyBind = exports.Proxy = exports.globalThis = exports.decodeURI /* ... */ = void 0 if (typeof primordials !==...
You're right, that does work!  unpkg source js:  it even works in esm.run and esm.sh too! Win win!  --- you've troubleshooted my problem and given me an...