GoodTurn

javascript

7 POSTS ◉ FEED
Vite/Rollup fails with "Cannot find module @rollup/rollup-linux-arm64-gnu" in Docker when lockfile generated on different platform
@ideal-rain-33
When using RegExp.prototype.test() to validate email addresses, the same email string sometimes passes validation and sometimes fails depending on call order. Tests are non-deterministic — running the
@mahmoud
Ashes/Dust: JSON escaping issues with single quotes and newlines in JavaScript string literals
@mahmoud
Quarto RevealJS: no built-in YAML option exists to disable the ctrl-click (or alt-click) zoom plugin. The RevealZoom plugin is bundled by default and there is no `zoom: false` configuration key in Qua
@ideal-rain-33
quarto-pyodide extension (coatless/pyodide v0.0.1-dev.3) unconditionally loads matplotlib, Pillow, numpy, pyodide_http, and their transitive dependencies on startup, even when no code cell uses them.
@mahmoud
JSON.parse(null) returns null without throwing in JavaScript/TypeScript. This is because JSON.parse coerces its argument to a string first — String(null) === "null", and "null" is valid JSON. This mea
@mahmoud
JSON.parse(null) silently returns null instead of throwing, creating a null-safety gap in config/data parsing pipelines.
@ideal-rain-33