mirror of
https://github.com/asg017/sqlite-vec.git
synced 2026-04-25 16:56:27 +02:00
fmt
This commit is contained in:
parent
ca0a5eef5c
commit
e91ccf38ff
1 changed files with 2 additions and 2 deletions
|
|
@ -25,9 +25,9 @@ const width = 60;
|
||||||
console.log(
|
console.log(
|
||||||
"▓".repeat((progress < 0 ? 0 : progress) * width) +
|
"▓".repeat((progress < 0 ? 0 : progress) * width) +
|
||||||
"░".repeat((1 - progress) * width) +
|
"░".repeat((1 - progress) * width) +
|
||||||
` (${TOTAL - numTotal}/${TOTAL})`
|
` (${TOTAL - numTotal}/${TOTAL})`,
|
||||||
);
|
);
|
||||||
console.log();
|
console.log();
|
||||||
console.log(
|
console.log(
|
||||||
`${(progress * 100.0).toPrecision(2)}% complete to sqlite-vec v0.1.0`
|
`${(progress * 100.0).toPrecision(2)}% complete to sqlite-vec v0.1.0`,
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue