Work fork of the thin proxy SGX that represents JMP.chat itself
1# frozen_string_literal: true 2 3class String 4 def presence 5 if empty? 6 nil 7 else 8 self 9 end 10 end 11end 12 13class NilClass 14 def presence 15 nil 16 end 17end