remove input files

This commit is contained in:
tristan 2024-12-10 09:04:17 +00:00
parent ed08211f46
commit c2083757eb
21 changed files with 59 additions and 4662 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,5 @@
{lib, ...}: {file}: rec {
rawContent = builtins.readFile file;
content = lib.strings.removeSuffix "\n" rawContent;
{lib, ...}: input: rec {
content = lib.strings.removeSuffix "\n" input;
lines = lib.strings.splitString "\n" content;
getLeftAndRight = s: s
|> lib.strings.splitString " "