1
Fork 0
mirror of https://github.com/RGBCube/rgbcube.github.io synced 2025-05-20 08:35:07 +00:00
rgbcube.github.io/src/minify/css.rs
2023-12-20 22:36:45 +03:00

4 lines
125 B
Rust

pub fn css<S: AsRef<str>>(input: S) -> String {
// TODO: Actually do something.
return input.as_ref().to_string();
}