Sha256: 1cd56abf203be0f056e20a11a7b14c14c70f3de90204f20365cb4f02d03754b3
Contents?: true
Size: 388 Bytes
Versions: 22
Compression:
Stored size: 388 Bytes
Contents
require 'facet/string/blank' class String alias_method :whitespace?, :blank? end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCString < Test::Unit::TestCase def test_whitespace? assert( ! "xyz".whitespace? ) assert( " ".whitespace? ) end end =end
Version data entries
22 entries across 22 versions & 1 rubygems