7 lines
269 B
TypeScript
7 lines
269 B
TypeScript
import { get } from "idb-keyval";
|
|
|
|
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((e) => e.id === id);
|
|
}
|