()
| 48 | private currentLanguage: Language | null; |
| 49 | |
| 50 | constructor() { |
| 51 | this.alertSystem = new Alert(); |
| 52 | this.alertSystem.prefixMessage = 'Load-Saver'; |
| 53 | this.base = window.httpRoot; |
| 54 | this.fetchBuiltins() |
| 55 | .then(() => {}) |
| 56 | .catch(() => {}); |
| 57 | } |
| 58 | |
| 59 | public static getLocalFiles(): Record<string, string> { |
| 60 | return JSON.parse(localStorage.get('files', '{}')); |
nothing calls this directly
no test coverage detected