1
2
3
4
5
6
7
8
import { dailyCommute } from "https://esm.town/v/jdan/dailyCommute";
import { traverse } from "https://esm.town/v/jdan/traverse";
export const randomCommutes = (() => {
for (let i = 0; i < 10; i++) {
console.log(traverse(dailyCommute));
}
})();