Improve Parsing Performance
I did some changes to increase performance.
Remove findRemainingTypes()
Check isArray once
I moved the isArray
outside the loop. This a dirty trick... but it should work.
getName once
I moved the getName
outside the loop. This will improve performance for large files.
Const instead of var
When we target modern browser, Babel will use const
instead of var
. I saw a ~4 second increase with the IFC Sample File.
Last updated