({ language, opened, theme })
| 12 | }, |
| 13 | |
| 14 | update({ language, opened, theme }) { |
| 15 | this.language = language || this.language; |
| 16 | this.opened = opened !== undefined ? opened : this.opened; |
| 17 | this.theme = theme || this.theme; |
| 18 | } |
| 19 | }; |
| 20 | |
| 21 | module.exports = appSettings; |
nothing calls this directly
no outgoing calls
no test coverage detected