Spaces:
Running
Running
| let allDecisions = null | |
| export function getAllDecisions() { | |
| return allDecisions | |
| } | |
| export function setAllDecisions(rows) { | |
| allDecisions = Array.isArray(rows) ? rows : null | |
| } | |
| export function clearAllDecisions() { | |
| allDecisions = null | |
| } | |