getify/grips

optimization: ?: to ||

Open

#13 aperta il 8 mar 2014

Vedi su GitHub
 (0 commenti) (0 reazioni) (1 assegnatario)JavaScript (22 fork)github user discovery
help wanted

Metriche repository

Star
 (288 star)
Metriche merge PR
 (Metriche PR in attesa)

Descrizione

Minor general optimization (but will happen a lot with grips-css):

m = m ? m : 5

can be optimized to:

m = m || 5

Guida contributor