@aimeloic/monkey-tester 4.0.9 → 4.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/htmlTemplate.js +2 -1
  2. package/package.json +1 -1
package/htmlTemplate.js CHANGED
@@ -441,7 +441,8 @@ async function handleRegister() {
441
441
  <script>
442
442
  // ── Unicode-safe decode ──────────────────────────────────────────────────────
443
443
  function _decode(b64) {
444
- return JSON.parse(decodeURIComponent(escape(atob(b64.replace(/\\s+/g, '')))));
444
+ // After (Correct regex translation)
445
+ return JSON.parse(decodeURIComponent(escape(atob(b64.replace(/\s+/g, '')))));
445
446
  }
446
447
 
447
448
  const ENDPOINTS = _decode(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aimeloic/monkey-tester",
3
- "version": "4.0.9",
3
+ "version": "4.0.10",
4
4
  "description": "Auto route scanning visual runner dashboard.",
5
5
  "main": "index.js",
6
6
  "type": "module",