class Conclas::Utils::StringHelper

Public Class Methods

is_empty(str) click to toggle source
# File lib/rb_conclas/utils/string_helper.rb, line 8
def self.is_empty(str)
  if str.nil? and str.strip.empty? ? true : false
  end
end