@alcyone-labs/arg-parser 2.10.0 → 2.10.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.
package/dist/index.mjs CHANGED
@@ -8976,7 +8976,7 @@ class Terminal {
8976
8976
  process.stdout.write("\x1B[?25h");
8977
8977
  }
8978
8978
  moveCursor(x, y) {
8979
- (void 0)(process.stdout, x, y);
8979
+ process.stdout.write(`\x1B[${y + 1};${x + 1}H`);
8980
8980
  }
8981
8981
  enableRawMode() {
8982
8982
  if (process.stdin.isTTY) {