Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
generateblocks
/
src
/
utils
/
was-block-just-inserted
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
/** * Check if a block was just inserted. * * @param {Object} attributes The value to check. * @return {boolean} Whether a block was just inserted. */ export default function wasBlockJustInserted( attributes ) { return '' === attributes.uniqueId; }