(field, err)
| 56 | export function measure(SunCalc, fx) { |
| 57 | const collectors = {}; |
| 58 | const record = (field, err) => (collectors[field] ??= []).push(err); |
| 59 | const byName = Object.fromEntries(fx.locations.map(l => [l.name, l])); |
| 60 | |
| 61 | // positions: getPosition (Sun), getMoonPosition (Moon) |
no outgoing calls
no test coverage detected
searching dependent graphs…