1
2
3
4
5
6
import { getTopTenBattingAverage } from "https://esm.town/v/Joelsrubin/redSpoonbill";
import { email } from "https://esm.town/v/std/email";
const list = await getTopTenBattingAverage();
await email({ subject: "Baseball Batting Average Leaderboard", text: `${list}` });
}