Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.rb « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e7460ed99a4ddccadedec386ece0ee680ee79e9 (plain)
1
2
3
4
5
6
7
8
module Utils
  def self.binary?(string) 
    string.each_byte do |x|
      x.nonzero? or return true 
    end
    false
  end
end