class RubyReport::Generator::Xlsx

def sanitize_row(row)

def sanitize_row(row)
  row.map do |el|
    el.is_a?(String) && el.start_with?(*XLSX_XSS_SYMBOLS) ? "'#{el}" : el
  end
end