* Create new instance * @param {string} filePath Path to save to on disk
(filePath)
| 625 | * @param {string} filePath Path to save to on disk |
| 626 | */ |
| 627 | constructor(filePath) { |
| 628 | this.#saveFileData = path.join(filePath, 'mod_cache.json') |
| 629 | this.#saveFileIcon = path.join(filePath, 'mod_icons.json') |
| 630 | this.#saveFileDetail = path.join(filePath, 'mod_items.json') |
| 631 | this.loadFile() |
| 632 | } |
| 633 | |
| 634 | /** |
| 635 | * Load current cache |