(runtime)
| 125 | * @returns {string} readable version |
| 126 | */ |
| 127 | const runtimeToString = (runtime) => { |
| 128 | if (runtime === undefined) return "*"; |
| 129 | if (typeof runtime === "string") return runtime; |
| 130 | return runtime.getFromUnorderedCache(getRuntimesString); |
| 131 | }; |
| 132 | |
| 133 | /** |
| 134 | * Runtime condition to string. |
no test coverage detected