Sha256: a841cd0a01979fb8171fe8d885451a31717f72b378fb3973352ef2e7ded5f572
Contents?: true
Size: 506 Bytes
Versions: 8
Compression:
Stored size: 506 Bytes
Contents
# frozen_string_literal: true require_relative "object/blank" require_relative "object/present" module ConvenientService module Examples module Standard module 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
Version data entries
8 entries across 8 versions & 1 rubygems