novaprime 1.2.7 → 1.2.9
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/bin/novaprime.js +1 -1
- package/package.json +1 -1
package/bin/novaprime.js
CHANGED
|
@@ -82,7 +82,7 @@ async function repl() {
|
|
|
82
82
|
|
|
83
83
|
// push the first input box toward the lower part of the screen, leaving a bottom margin
|
|
84
84
|
const rows = process.stdout.rows || 24;
|
|
85
|
-
process.stdout.write('\n'.repeat(Math.max(0, rows -
|
|
85
|
+
process.stdout.write('\n'.repeat(Math.max(0, rows - 26)));
|
|
86
86
|
|
|
87
87
|
let messages = [];
|
|
88
88
|
while (true) {
|