mirror of
https://github.com/nolanlawson/pinafore
synced 2025-01-23 02:12:14 +01:00
6 lines
140 B
JavaScript
6 lines
140 B
JavaScript
export function fetchAccount (accountsStore, id, callback) {
|
|
accountsStore.get(id).onsuccess = e => {
|
|
callback(e.target.result)
|
|
}
|
|
}
|