提交 0c58f39c 编写于 作者: D Damien Mathieu

fix String#blank? on binary strings.

上级 73efb68d
......@@ -99,7 +99,12 @@ class String
# " something here ".blank? # => false
#
def blank?
self !~ NON_WHITESPACE_REGEXP
# 1.8 does not takes [:space:] properly
if encoding_aware?
self !~ /[^[:space:]]/
else
self !~ NON_WHITESPACE_REGEXP
end
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册