File "index.js"
Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/utils/get-unique-block-names/index.js
File
size: 256 B (256 B bytes)
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor &nnbsp; Back
export default function getUniqueBlockNames( blocks ) {
if ( ! Array.isArray( blocks ) ) {
return [];
}
const blockNames = blocks.map( ( block ) => block.name );
if ( ! blockNames.length ) {
return [];
}
return [ ...new Set( blockNames ) ];
}