(lh, rh)
| 181 | |
| 182 | // nullish coalesce |
| 183 | export function ifNull(lh, rh) { |
| 184 | return lh == null ? rh : lh; |
| 185 | } |
| 186 | |
| 187 | // checks if given index range in an array contains a non-null value |
| 188 | // aka a range-bounded Array.some() |
no outgoing calls
no test coverage detected
searching dependent graphs…