????

Your IP : 18.217.106.29


Current Path : /proc/self/cwd/wp-content/plugins/cartflows/modules/gutenberg/src/controls/
Upload File :
Current File : //proc/self/cwd/wp-content/plugins/cartflows/modules/gutenberg/src/controls/isInvalid.js

const isInvalid = ( block ) => {
	const {
		name,
		isValid,
		validationIssues,
	} = block;

	if ( ! name || ! name.match( /^uagb\// ) ) {
		return false;
	}

	if ( isValid || ! validationIssues.length ) {
		return false;
	}

	return true;
}

export default isInvalid;