1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
let cardDb = {}; let altId = {}; function setCardDb(d) { cardDb = d; } function getCardDb() { return cardDb; } function getAltId() { return altId; } function setAltId(x) { altId = x; } export { getCardDb, setCardDb, getAltId, setAltId, };