Created
March 15, 2019 09:52
-
-
Save ZhangYiJiang/1eaf2d3a1d3d6d39063f7325d48f36ae to your computer and use it in GitHub Desktop.
For testing NUSMods data migration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
code = ''; | |
Object.keys(localStorage).forEach(k => { | |
if (k === 'reduxState') return; | |
code += `localStorage[${JSON.stringify(k)}] = ${JSON.stringify(localStorage[k])};\n`; | |
}); | |
code += 'window.location.reload()' | |
copy(code) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment