Spaces:
Running
Running
File size: 245 Bytes
5fa7a59 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
let allDecisions = null
export function getAllDecisions() {
return allDecisions
}
export function setAllDecisions(rows) {
allDecisions = Array.isArray(rows) ? rows : null
}
export function clearAllDecisions() {
allDecisions = null
}
|