react-code-dataset / spectrum /api /utils /validate-draft-js-input.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
212 Bytes
// @flow
export const validateRawContentState = (input: any) => {
if (
!input ||
!input.blocks ||
!Array.isArray(input.blocks) ||
!input.entityMap
) {
return false;
}
return true;
};