[obsidian] vault backup: 2024-10-25 14:43:18[
All checks were successful
Build / build (push) Successful in 3m11s

This commit is contained in:
松浦 知也 Matsuura Tomoya 2024-10-25 14:43:18 +09:00
parent f0de7daafe
commit 714b529438

View File

@ -63,11 +63,7 @@ let t = 0;
const mainProcess = () =>{ const mainProcess = () =>{
const data = Uint8Array.from({ length: length }, const data = Uint8Array.from({ length: length },
(v, _t) => { (v, _t) => bytebeat(t++)
const res = bytebeat(t);
t += 1;
return res
}
); );
process.stdout.write(data); process.stdout.write(data);
}; };