Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
generateblocks
/
src
/
utils
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
export function convertLegacyHtmlAttributes( oldHtmlAttributes = [] ) { let newHtmlAttributes = {}; if ( oldHtmlAttributes.length > 0 ) { newHtmlAttributes = oldHtmlAttributes.reduce( ( acc, curr ) => { acc[ curr.attribute ] = curr.value; return acc; }, {} ); } return newHtmlAttributes; }