class SecureNative::Utils::Utils

Public Class Methods

null_or_empty?(string) click to toggle source
# File lib/securenative/utils/utils.rb, line 6
def self.null_or_empty?(string)
  return true if !string || string.empty? || string.nil?

  false
end