Merge pull request 'dreaded-fixes' (#8) from dreaded-fixes into master

Reviewed-on: #8
This commit is contained in:
SethTrowbridge 2023-10-17 20:10:12 -04:00
commit dd006daae7
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ const findNextExport =(inFile:string, inIndex=0, inLocal:Array<string>, inForeig
}
else
{
const members = inFile.substring(nextCharInd+1, endBracketInd);
const members = inFile.substring(nextCharInd+1, endBracketInd).replace(/\s/g, '');
members.split(",").forEach(part=>
{
const renamed = part.split(" as ");