List of helpful shortcuts for faster coding
If you have any other helpful shortcuts, feel free to add in the comments of this gist :)
| // Find if user has set a preference and react to changes | |
| (function initializeTheme(){ | |
| syncBetweenTabs() | |
| listenToOSChanges() | |
| enableTheme( | |
| returnThemeBasedOnLocalStorage() || | |
| returnThemeBasedOnOS() || | |
| returnThemeBasedOnTime(), | |
| false) | |
| }()) |