module InlineSvg::TransformPipeline::Transformations

def self.without_empty_values(params)

Experimental RBS support (using type sampling data from the type_fusion project).

def self.without_empty_values: (Hash params) -> Hash

This signature was generated using 2 samples from 2 applications.

def self.without_empty_values(params)
  params.reject {|key, value| value.nil?}
end