(...values)
| 843 | } |
| 844 | |
| 845 | const getFirstNonNull = function (...values) { |
| 846 | return values.find(value => value != null) |
| 847 | } |
| 848 | |
| 849 | const getSponsoredSubsAmount = function (price, subCount, personalSub) { |
| 850 | // 1 100% |
nothing calls this directly
no outgoing calls
no test coverage detected