Comment on Tiny Treeshaker: JavaScript tree shaking in 200 lines of codeparentComments−markl42OP5yMight be worth checking the code buttree shaking eliminates unused functions from across the bundle by starting at the entry point and only including functions that may be executedIs what this code (tries to!) do
Comments
Might be worth checking the code but
Is what this code (tries to!) do