pub fn normalize_module_name(module: &str) -> StringExpand description
Normalizes module names by removing dots and converting to lowercase.
Allows domain names like near.ai or names stylized with capital letters.
The name field of crate::ModuleManifest should equal the normalized form.
ยงExamples
assert_eq!(normalize_module_name("foo.bar"), "foobar");
assert_eq!(normalize_module_name("FOOBAR"), "foobar");