Skip to content

Commit 0b7dd1b

Browse files
authored
chore: fix JavaScript lint errors
PR-URL: #10929 Closes: #10927 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent ff568ee commit 0b7dd1b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/utils/regexp-from-string/examples

lib/node_modules/@stdlib/utils/regexp-from-string/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ console.log( reFromString( '/[A-Z]*/' ) );
2727
// => /[A-Z]*/
2828

2929
console.log( reFromString( '/\\\\\\\//ig' ) ); // eslint-disable-line no-useless-escape
30-
// => /\\\//ig
30+
// => /\\\//gi
3131

3232
console.log( reFromString( '/[A-Z]{0,}/' ) );
3333
// => /[A-Z]{0,}/

0 commit comments

Comments
 (0)