1 2 3 4 5 6 7 8 9 10 11 12 13 14
let cardDb = {}; function setCardDb(d) { cardDb = d; } function getCardDb() { return cardDb; } export { getCardDb, setCardDb, };