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 4c3a4e1 commit d5c2af3Copy full SHA for d5c2af3
bin/initialize.js
@@ -220,7 +220,7 @@ program
220
221
for (prop of propNames){
222
if(/:/.test(prop)){
223
- const [name, type, required] = prop.match(/^[a-z0-9]+|(?<=:).[a-z0-9]+|\*/ig);
+ const [name, type, required] = prop.match(/^[a-z0-9]+|(?<=:).[a-z0-9]+|\*$/ig);
224
const key = name + (required ? '*' : '');
225
withTypes[key] = type
226
}
0 commit comments