Skip to content

lucerion/jsregexp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSRegexp

Gem Version Build Status

JSRegexp is a converter from Ruby Regexp to a valid JavaScript RegExp format

Installation

Add this line to your application's Gemfile:

gem 'jsregexp'

And then execute:

$ bundle

Or install it yourself as:

$ gem install jsregexp

Usage

JSRegexp.convert(/\Afoo/)   # => '^foo'
JSRegexp.convert('/\Gbar/') # => '^bar'
JSRegexp.convert('baz\Z')   # => 'baz$'

License

BSD-3-Clause