Sha256: e9e0dc66f2a3b19529b928193c580edf6bc5205562beb4f9ee76ba34b70c184e
Contents?: true
Size: 443 Bytes
Versions: 4
Compression:
Stored size: 443 Bytes
Contents
# frozen_string_literal: true require_relative "string/camelize" require_relative "string/demodulize" require_relative "string/split" module ConvenientService module Utils module String class << self def camelize(...) Camelize.call(...) end def demodulize(...) Demodulize.call(...) end def split(...) Split.call(...) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems