DFE-Digital/govuk-formbuilder

View on GitHub
lib/govuk_design_system_formbuilder/traits/html_attributes.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module GOVUKDesignSystemFormBuilder
  module Traits
    module HTMLAttributes
      using HTMLAttributesUtils

      def attributes(html_attributes = {})
        options
          .deep_merge_html_attributes(html_attributes)
          .deep_tidy_html_attributes
      end
    end
  end
end