move anchors around

This commit is contained in:
2026-06-22 17:42:09 -04:00
parent 68d4baee61
commit 04b01dbf27
3 changed files with 24 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
function min(a, b) {
if (a < b) {
return a;
}
return b;
}
function max(a, b) {
if (a > b) {
return a;
}
return b;
}