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