add test
This commit is contained in:
parent
f3b0bb6c86
commit
a811f29837
1 changed files with 4 additions and 0 deletions
|
@ -2,6 +2,10 @@
|
|||
Ox.escapeRegExp <f> Escapes a string for use in a regular expression
|
||||
(str) -> <r> Escaped string
|
||||
str <s> String
|
||||
> Ox.escapeRegExp('foo.com/bar?baz')
|
||||
'foo\\.com\\/bar\\?baz'
|
||||
> new RegExp(Ox.escapeRegExp('foo.com/bar?baz')).test('foo.com/bar?baz')
|
||||
true
|
||||
@*/
|
||||
// see https://developer.mozilla.org/en/JavaScript/Guide/Regular_Expressions
|
||||
Ox.escapeRegExp = function(string) {
|
||||
|
|
Loading…
Reference in a new issue