gabriel_laddel: DE (with all the goodies MP and I discussed previously -
!s paper clip), 3D CLIM (actually a rather involved project - selecting the correct hardware, reverse engineered opengl drivers etc is expensive and how exactly this gets split off into various products is complicated), a program that does run-time analysis on your CL code and optimizes it in
mircea_popescu: For checking if a string is empty, null or undefined I use: return (
!str || 0 === str.length); For checking if a string is blank, null or undefined I use: return (
!str || /^\s*$/.test(str)); For checking if a string is blank or contains only white-space: return (this.length === 0 || !this.trim());