nixos/system/home/lib/to_capital.nix

14 lines
290 B
Nix
Raw Normal View History

lib: string:
2024-07-30 15:06:34 +01:00
with lib;
let
chars =
let
lc = strings.splitString "" string;
in
(lists.sublist 1 (lists.length lc - 2) lc);
in
(strings.concatStringsSep "" (
(lists.singleton (strings.toUpper (lists.elemAt chars 0)))
++ (lists.sublist 1 (lists.length chars) chars)
))