haiku-atelier-2024/web/vendor/htmlburger/carbon-fields/packages/metaboxes/utils/is-gutenberg.js
2024-12-22 19:47:20 +01:00

13 lines
242 B
JavaScript
Executable file

/**
* External dependencies.
*/
import { isUndefined } from 'lodash';
/**
* Returns true if Gutenberg is presented.
*
* @return {boolean}
*/
export default function isGutenberg() {
return ! isUndefined( window._wpLoadBlockEditor );
}