This commit is contained in:
Chris Kruining 2026-03-25 06:45:43 +00:00
parent 59a1fbaf0f
commit ac3dac322d
78 changed files with 893 additions and 802 deletions

View file

@ -1,10 +1,8 @@
{ lib, ...}:
let
{lib, ...}: let
inherit (builtins) isString typeOf match toString head;
inherit (lib) throwIfNot concatStringsSep splitStringBy toLower map concatMapAttrsStringSep;
in
{
strings = {
in {
localLib.strings = {
#========================================================================================
# Converts a string to snake case
#
@ -36,4 +34,4 @@ in
in
"${_protocol}${host}${_port}${_path}${_query}${_hash}";
};
}
}