I am using Draft.js plugin Mention.
For editorState.content.entityMap.mention
, I can successfully get value by
mention.get('address')
But why I check whether it is Map
by
console.log('mention', mention);
console.log('mention instanceof Map', mention instanceof Map);
it returns false
? Note the console shows mention
is Map.