File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/regexp
extended-length-path/docs
utf16-surrogate-pair/docs
utf16-unpaired-surrogate/docs Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 Boolean indicating whether to create a capture group for the match.
1919 Default: false.
2020
21+ Returns
22+ -------
23+ re: RegExp
24+ Regular expression.
25+
2126 Examples
2227 --------
2328 > var RE = {{alias}}();
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
4141* @example
4242* var opts = {};
4343* var options = {
44- * 'returns ': '* '
44+ * 'flags ': 'gm '
4545* };
4646* var err = validate( opts, options );
4747* if ( err ) {
Original file line number Diff line number Diff line change 1414 Boolean indicating whether to wrap a regular expression matching a white
1515 space character with a capture group. Default: false.
1616
17+ Returns
18+ -------
19+ regexp: RegExp
20+ Regular expression.
21+
1722 Examples
1823 --------
1924 > var RE_EOL = {{alias}}();
3035 Examples
3136 --------
3237 > var bool = {{alias}}.REGEXP.test( 'abc' )
33- false
38+ false
3439
3540{{alias}}.REGEXP_CAPTURE
3641 Regular expression to capture a newline character sequence: /\r?\n/.
Original file line number Diff line number Diff line change @@ -85,7 +85,6 @@ interface ReEOL {
8585* @returns regular expression
8686*
8787* @example
88- * @example
8988* var RE_EOL = reEOL();
9089*
9190* var bool = RE_EOL.test( '\n' );
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
4141* @example
4242* var opts = {};
4343* var options = {
44- * 'returns ': '* '
44+ * 'flags ': 'gm '
4545* };
4646* var err = validate( opts, options );
4747* if ( err ) {
Original file line number Diff line number Diff line change 44
55 Extended-length paths are Windows paths which begin with `\\?\`.
66
7+ Returns
8+ -------
9+ re: RegExp
10+ Regular expression.
11+
712 Examples
813 --------
914 > var RE = {{alias}}();
Original file line number Diff line number Diff line change 1- {{alias}}
1+ {{alias}}()
22 Returns a regular expression to match a UTF-16 surrogate pair.
33
4+ Returns
5+ -------
6+ re: RegExp
7+ Regular expression.
8+
49 Examples
510 --------
611 > var RE = {{alias}}();
Original file line number Diff line number Diff line change 1- {{alias}}
1+ {{alias}}()
22 Returns a regular expression to match an unpaired UTF-16 surrogate.
33
4+ Returns
5+ -------
6+ re: RegExp
7+ Regular expression.
8+
49 Examples
510 --------
611 > var RE = {{alias}}();
Original file line number Diff line number Diff line change 1414 Boolean indicating whether to wrap a regular expression matching a white
1515 space character with a capture group. Default: false.
1616
17+ Returns
18+ -------
19+ re: RegExp
20+ Regular expression.
21+
1722 Examples
1823 --------
1924 > var RE = {{alias}}();
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
4141* @example
4242* var opts = {};
4343* var options = {
44- * 'returns ': '* '
44+ * 'flags ': 'gm '
4545* };
4646* var err = validate( opts, options );
4747* if ( err ) {
You can’t perform that action at this time.
0 commit comments