* Renders return const when it is supported, otherwise let when supported, otherwise var. * @returns {"const" | "let" | "var"} return `const` when it is supported, otherwise `let` when supported, otherwise `var`
()
| 252 | * @returns {"const" | "let" | "var"} return `const` when it is supported, otherwise `let` when supported, otherwise `var` |
| 253 | */ |
| 254 | renderConst() { |
| 255 | return this.supportsConst() ? "const" : this.supportsLet() ? "let" : "var"; |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Renders return let when it is supported, otherwise var. |
no test coverage detected