stylex_constants/constants/
time_units.rs1use rustc_hash::FxHashSet;
2
3use super::number_properties::NUMBER_PROPERTY_SUFFIXIES;
4
5pub fn get_time_units() -> FxHashSet<String> {
6 NUMBER_PROPERTY_SUFFIXIES
7 .keys()
8 .map(|key| key.to_string())
9 .collect()
10}