aboutsummaryrefslogtreecommitdiff
path: root/src/card_db.js
blob: b9b991f858d88dbd151a6f0fcd99f69f75e18e53 (plain)
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,
};