Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
ultimate-addons-for-gutenberg
/
blocks-config
/
uagb-controls
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
const getUAGEditorStateLocalStorage = ( key = false ) => { if ( ! window.localStorage ) { return null; } if ( ! key ) { return localStorage; } const uagLastOpenedSettingState = localStorage.getItem( key ); if ( uagLastOpenedSettingState ) { return JSON.parse( uagLastOpenedSettingState ); } return null; }; export default getUAGEditorStateLocalStorage;