ripcrypt/module/utils/sumReduce.mjs
Oliver-Akins f1d0d781d8 Guts Data Un-saving
Don't save guts max to database since we don't need it, but make sure that it still shows up as a token bar that can be chosen rather than a single value
2024-12-28 23:19:51 -07:00

3 lines
60 B
JavaScript

export function sumReduce(sum, val) {
return sum + val;
};