Class: Regexp

Inherits:
Object
  • Object
show all
Defined in:
lib/react_native_util/core_ext/regexp.rb

Instance Method Summary collapse

Instance Method Details

#match?(str) ⇒ Boolean

For portability to system Ruby

Returns:

  • (Boolean)


4
5
6
# File 'lib/react_native_util/core_ext/regexp.rb', line 4

def match?(str)
  !match(str).nil?
end