iceshrimp-legacy/packages/client/src/scripts/get-account-from-id.ts
ThatOneCalculator 6b00abf05c
refactor: 🎨 rome
2023-01-12 20:40:33 -08:00

8 lines
290 B
TypeScript

import { get } from "@/scripts/idb-proxy";
export async function getAccountFromId(id: string) {
const accounts = (await get("accounts")) as { token: string; id: string }[];
if (!accounts) console.log("Accounts are not recorded");
return accounts.find((account) => account.id === id);
}