summary refs log tree commit diff
path: root/util.nix
blob: e783f3b7212079dff8ed18437b3b961dea0d9a41 (plain)
1
2
3
4
5
6
7
{ lib }:
{
  titleCase = str: with lib.strings; let
    firstCharUpper = s: concatStrings [(toUpper (substring 0 1 s)) (substring 1 (stringLength s) s)];
  in
    concatStringsSep " " (map firstCharUpper (splitString " " str));
}