summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorSteve Moore <mooresm@miamioh.edu>2016-07-26 15:39:50 -0400
committerSteve Moore <mooresm@miamioh.edu>2016-07-26 15:39:50 -0400
commitdb92a082c15c11d4d069a821be8aaddc5537020b (patch)
tree18baccc154cef403630916abd856e9accdf071aa /README.markdown
parente18f0428514516c8fd53d467cc78aaae6713cb41 (diff)
Added documentation for regexpescape function.
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.markdown b/README.markdown
index 158f55b..6352473 100644
--- a/README.markdown
+++ b/README.markdown
@@ -900,6 +900,10 @@ Passing a third argument will cause the generated range to step by that interval
*Type*: rvalue.
+#### `regexpescape`
+
+Regexp escape a string or array of strings. Requires either a single string or an array as an input. *Type*: rvalue.
+
#### `reject`
Searches through an array and rejects all elements that match the provided regular expression. For example, `reject(['aaa','bbb','ccc','aaaddd'], 'aaa')` returns ['bbb','ccc']. *Type*: rvalue.