Skip to content

Commit 8400dff

Browse files
committed
Update REPL and package namespace
1 parent dbea1c7 commit 8400dff

File tree

2 files changed

+11
-12
lines changed
  • lib/node_modules/@stdlib

2 files changed

+11
-12
lines changed

lib/node_modules/@stdlib/namespace/lib/namespace/r.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -1006,14 +1006,6 @@ ns.push({
10061006
]
10071007
});
10081008

1009-
ns.push({
1010-
'alias': 'RE_EOL',
1011-
'path': '@stdlib/regexp/eol',
1012-
'value': require( '@stdlib/regexp/eol' ),
1013-
'type': 'RegExp',
1014-
'related': []
1015-
});
1016-
10171009
ns.push({
10181010
'alias': 'RE_EXTENDED_LENGTH_PATH',
10191011
'path': '@stdlib/regexp/extended-length-path',
@@ -1278,6 +1270,14 @@ ns.push({
12781270
]
12791271
});
12801272

1273+
ns.push({
1274+
'alias': 'reEOL',
1275+
'path': '@stdlib/regexp/eol',
1276+
'value': require( '@stdlib/regexp/eol' ),
1277+
'type': 'Function',
1278+
'related': []
1279+
});
1280+
12811281
ns.push({
12821282
'alias': 'reFromString',
12831283
'path': '@stdlib/utils/regexp-from-string',

lib/node_modules/@stdlib/regexp/lib/index.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -116,14 +116,13 @@ setReadOnly( regexp, 'RE_DIRNAME_POSIX', require( '@stdlib/regexp/dirname-posix'
116116
setReadOnly( regexp, 'RE_DIRNAME_WINDOWS', require( '@stdlib/regexp/dirname-windows' ) );
117117

118118
/**
119-
* @name RE_EOL
119+
* @name reEOL
120120
* @memberof regexp
121121
* @readonly
122-
* @constant
123-
* @type {RegExp}
122+
* @type {Function}
124123
* @see {@link module:@stdlib/regexp/eol}
125124
*/
126-
setReadOnly( regexp, 'RE_EOL', require( '@stdlib/regexp/eol' ) );
125+
setReadOnly( regexp, 'reEOL', require( '@stdlib/regexp/eol' ) );
127126

128127
/**
129128
* @name RE_EXTENDED_LENGTH_PATH

0 commit comments

Comments
 (0)