mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-22 21:07:43 +00:00
9 lines
168 B
TypeScript
9 lines
168 B
TypeScript
import { run, Tasks } from "./mem.ts";
|
|
|
|
const output = [];
|
|
for (const task of Tasks) {
|
|
const result = await run(task);
|
|
output.push(result);
|
|
}
|
|
|
|
console.log(output);
|