Sha256: 81f2ffd02131f7c70032eb839f2565767e4649e35cc1add22b90a9cc807c8de8
Contents?: true
Size: 227 Bytes
Versions: 30
Compression:
Stored size: 227 Bytes
Contents
# frozen_string_literal: true # Monkey patches for +String+ # class String # Downcases the first letter of self, returning a new string # # @return [String] # def uncapitalize sub(/^[A-Z]/, &:downcase) end end
Version data entries
30 entries across 30 versions & 1 rubygems