ignitionworks/draftjs_exporter

View on GitHub
lib/draftjs_exporter/entities/null.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
module DraftjsExporter
  module Entities
    class Null
      def call(parent_element, _data)
        parent_element
      end
    end
  end
end