(keys: string[], value: string)
| 188 | return `${this.#declaration(keys)}${JSON.stringify(value)}`; |
| 189 | } |
| 190 | #strDeclaration(keys: string[], value: string): string { |
| 191 | return `${this.#declaration(keys)}${JSON.stringify(value)}`; |
| 192 | } |
| 193 | #numberDeclaration(keys: string[], value: number): string { |
| 194 | if (Number.isNaN(value)) { |
| 195 | return `${this.#declaration(keys)}nan`; |
no test coverage detected