mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 05:06:46 +10:00
9 lines
130 B
Ruby
9 lines
130 B
Ruby
module Utils
|
|
def self.binary?(string)
|
|
string.each_byte do |x|
|
|
x.nonzero? or return true
|
|
end
|
|
false
|
|
end
|
|
end
|