(param)
| 839 | } |
| 840 | |
| 841 | const getExperimentValueFromQuery = function (param) { |
| 842 | return { true: 'beta', false: 'control', control: 'control', beta: 'beta' }[getQueryVariable(param)] |
| 843 | } |
| 844 | |
| 845 | const getFirstNonNull = function (...values) { |
| 846 | return values.find(value => value != null) |
nothing calls this directly
no test coverage detected