@wordpress/editor
Version:
Enhanced block editor for WordPress posts.
16 lines (15 loc) • 313 B
JavaScript
// packages/editor/src/components/collab-sidebar/rich-text-control/utils.ts
var EMPTY_ARRAY = [];
function getAllowedFormats({
allowedFormats,
disableFormats
}) {
if (disableFormats) {
return EMPTY_ARRAY;
}
return allowedFormats;
}
export {
getAllowedFormats
};
//# sourceMappingURL=utils.mjs.map