@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.cjs CHANGED
@@ -9018,7 +9018,7 @@ class Terminal {
9018
9018
  process.stdout.write("\x1B[?25h");
9019
9019
  }
9020
9020
  moveCursor(x, y) {
9021
- (void 0)(process.stdout, x, y);
9021
+ process.stdout.write(`\x1B[${y + 1};${x + 1}H`);
9022
9022
  }
9023
9023
  enableRawMode() {
9024
9024
  if (process.stdin.isTTY) {