getify/grips

optimization: ?: to ||

オープン

#13 opened on 2014/03/08

 (0 件のコメント) (0 件のリアクション) (1 人の担当者)JavaScript (22 件のフォーク)github user discovery
help wanted

Repository metrics

Stars
 (288 個のスター)
PR merge metrics
 (30d に merged PR はありません)

説明

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

m = m ? m : 5

can be optimized to:

m = m || 5

コントリビューターガイド