fn SplitPascalCaseIntoWords(Segment: &str) -> Vec<String>Expand description
Split a PascalCase / UPPERCASE string into lowercase component words,
matching the tokenisation Maintain’s Build/Process.rs applies when it
stamps the Tauri identifier. Example: ElectronProfile →
["electron", "profile"]; 22NodeVersion → ["22", "node", "version"].
Empty segments are filtered out.