compromising-position 1.0.0 → 1.0.1

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.
@@ -21,7 +21,7 @@ try {
21
21
  } catch (err) {
22
22
  // If secure heap not available, run without it
23
23
  if (err && typeof err === "object" && "status" in err) {
24
- process.exit(err.status as number);
24
+ process.exit(Number(err.status));
25
25
  }
26
26
  execFileSync(process.execPath, [entry, ...process.argv.slice(2)], {
27
27
  stdio: "inherit",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compromising-position",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Privacy-preserving credential exposure checker — were your API keys compromised? Find out.",
5
5
  "type": "module",
6
6
  "engines": {