Function isEmpty [src]
Prototype
pub fn isEmpty(component: Component) bool Parameters
component: Component Source
pub fn isEmpty(component: Component) bool {
return switch (component) {
.raw, .percent_encoded => |string| string.len == 0,
};
}