"breakdown" language for breakout sells

This commit is contained in:
tim
2025-04-10 13:34:48 -04:00
parent 556554fbf3
commit 0673b01ac8
5 changed files with 23 additions and 8 deletions

View File

@@ -153,4 +153,8 @@ export function timestamp(date = null) {
export function dateString(datetime) {
return datetime.toLocaleString({dateStyle: 'medium', timeStyle: 'short'})
}
}
export function logicalXOR(a, b) {
return (a || b) && !(a && b)
}