Skip to content

Commit ca38543

Browse files
committed
Rename identifiers
1 parent bcd5553 commit ca38543

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

lib/node_modules/@stdlib/utils/escape-regexp-string/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# rescape
22

3-
> Escape a [regular expression][mdn-regular-expressions] string or pattern.
3+
> Escape a [regular expression][mdn-regexp] string or pattern.
44
55

66
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
@@ -23,7 +23,7 @@ var rescape = require( '@stdlib/utils/escape-regexp-string' );
2323

2424
#### rescape( str )
2525

26-
Escapes a [regular expression][mdn-regular-expressions] `string` or pattern.
26+
Escapes a [regular expression][mdn-regexp] `string` or pattern.
2727

2828
``` javascript
2929
var str = rescape( '/[A-Z]*/' );
@@ -141,7 +141,7 @@ out = rescape( '(?:beep|boop)' );
141141

142142
<section class="links">
143143

144-
[mdn-regular-expressions]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
144+
[mdn-regexp]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
145145

146146
</section>
147147

lib/node_modules/@stdlib/utils/eval/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# eval
22

3-
> Alias for [`eval`][eval] global.
3+
> Alias for [`eval`][mdn-eval] global.
44
55

66
<section class="usage">
@@ -13,7 +13,7 @@ var evil = require( '@stdlib/utils/eval' );
1313

1414
#### evil( str )
1515

16-
Alias for [`eval`][eval] global.
16+
Alias for [`eval`][mdn-eval] global.
1717

1818
``` javascript
1919
var v = evil( '5*4*3*2*1' );
@@ -29,7 +29,7 @@ var v = evil( '5*4*3*2*1' );
2929

3030
## Notes
3131

32-
* A reference to [`eval`][eval] __is__ treated differently by the compiler. For example, when evaluating code containing block-scoped declarations (e.g., `let`, `const`, `function`, `class`), the compiler may throw an `error` complaining that block-scoped declarations are __not__ yet supported outside of `strict mode`. One possible workaround is to include `"use strict";` in the evaluated code, as done in the example below.
32+
* A reference to [`eval`][mdn-eval] __is__ treated differently by the compiler. For example, when evaluating code containing block-scoped declarations (e.g., `let`, `const`, `function`, `class`), the compiler may throw an `error` complaining that block-scoped declarations are __not__ yet supported outside of `strict mode`. One possible workaround is to include `"use strict";` in the evaluated code, as done in the example below.
3333

3434
</section>
3535

@@ -135,7 +135,7 @@ $ jseval '5*4*3*2*1'
135135

136136
<section class="links">
137137

138-
[eval]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval
138+
[mdn-eval]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval
139139

140140
</section>
141141

0 commit comments

Comments
 (0)