* @returns {string}
()
| 381 | * @returns {string} |
| 382 | */ |
| 383 | getContent() { |
| 384 | this.#content ||= fs.readFileSync(this.getAbsolutePath(), 'utf8'); |
| 385 | return this.#content; |
| 386 | } |
| 387 | |
| 388 | /** |
| 389 | * @returns {{ script?: string[]; variant?: string[]; [key: string]: string }} parsed META tags of a spec file |
no test coverage detected