Sha256: 9f2af959111599ee1ddb5ec501754b544fb515e930c0c3b24a41e5fb5e790366

Contents?: true

Size: 559 Bytes

Versions: 4

Compression:

Stored size: 559 Bytes

Contents

# frozen_string_literal: true

require_relative "object/blank"
require_relative "object/present"

module ConvenientService
  module Examples
    module Standard
      module V1
        class RequestParams
          module Utils
            module Object
              class << self
                def blank?(object)
                  Blank.call(object)
                end

                def present?(object)
                  Present.call(object)
                end
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
convenient_service-0.17.0 lib/convenient_service/examples/standard/v1/request_params/utils/object.rb
convenient_service-0.16.0 lib/convenient_service/examples/standard/v1/request_params/utils/object.rb
convenient_service-0.15.0 lib/convenient_service/examples/standard/v1/request_params/utils/object.rb
convenient_service-0.14.0 lib/convenient_service/examples/standard/v1/request_params/utils/object.rb