Add EOF newlines to all files that don't have it already for consistency

This commit is contained in:
Oliver-Akins 2024-02-10 22:55:45 -07:00
parent 0770f32ef5
commit 931b6a96d0
27 changed files with 27 additions and 27 deletions

View file

@ -28,4 +28,4 @@ export default {
"xor": (a, b) => (a || b) && !(a && b),
"xnor": (a, b) => !((a || b) && !(a && b)),
"defined": v => v != null,
};
};