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