(runtime)
| 91 | * @returns {string} key of runtimes |
| 92 | */ |
| 93 | const getRuntimeKey = (runtime) => { |
| 94 | if (runtime === undefined) return "*"; |
| 95 | if (typeof runtime === "string") return runtime; |
| 96 | return runtime.getFromUnorderedCache(getRuntimesKey); |
| 97 | }; |
| 98 | |
| 99 | /** |
| 100 | * Returns runtime(s). |
no test coverage detected