lkang2 / glmatrix

Automatically exported from code.google.com/p/glmatrix
0 stars 0 forks source link

usage closure compiler #10

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Closure compiler seems to shave of another 1.5kb which can't be bad

Original issue reported on code.google.com by jeroom832@gmail.com on 6 Jun 2010 at 8:46

GoogleCodeExporter commented 8 years ago
I wasn't even aware of this tool before now! I'll definitely use this for the 
next 
release.

Looking at the output it produces (pretty-printed) also showed my a couple neat 
tricks, such as:

if(!dest) { dest = mat; }
becomes...
dest || (dest = mat);

Very clever!

Original comment by Tojiro@gmail.com on 7 Jun 2010 at 3:37

GoogleCodeExporter commented 8 years ago

Original comment by Tojiro@gmail.com on 12 Jun 2010 at 5:20

GoogleCodeExporter commented 8 years ago

Original comment by Tojiro@gmail.com on 12 Jun 2010 at 5:37

GoogleCodeExporter commented 8 years ago

Original comment by Tojiro@gmail.com on 13 Jun 2010 at 4:13