We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfc1c22 commit 94e3438Copy full SHA for 94e3438
1 file changed
lib/constants.js
@@ -98,11 +98,12 @@ module.exports = {
98
REGEX_REMOVE_BACKSLASH: /(?:\[.*?[^\\]\]|\\(?=.))/g,
99
100
// Replace globs with equivalent patterns to reduce parsing time.
101
- REPLACEMENTS: Object.create(null, {
+ REPLACEMENTS: {
102
+ __proto__: null,
103
'***': '*',
104
'**/**': '**',
105
'**/**/**': '**'
- }),
106
+ },
107
108
// Digits
109
CHAR_0: 48, /* 0 */
0 commit comments