aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/ecma/ternary.js
blob: 479e411c952ef02c7e6a64e64a30f029924d5802 (plain) (blame)
1
2
3
4
5
6
const value =
  condition
    ? typeof number === 'string'
      ? Number(number)
      : number
    : null;