function convertToCommentBlock( { name, attributes } ) { const blockAttrs = JSON.stringify( attributes ); return ``; } /** * @param blocks {Object[]} */ function serialize( blocks ) { return blocks.map( convertToCommentBlock ).join( '\n\n' ); } export default serialize;