Sha256: d54e49d5d10ccd3b1c3cfb24991871d53186b67a2138d3f5e7c50e1a4881d0d2
Contents?: true
Size: 275 Bytes
Versions: 73
Compression:
Stored size: 275 Bytes
Contents
unless String.method_defined? :start_with? class String def start_with?(*prefixes) prefixes.any? do |prefix| if prefix.respond_to? :to_str prefix = prefix.to_str self[0, prefix.length] == prefix end end end end end
Version data entries
73 entries across 73 versions & 5 rubygems