Utilizing the Draft.js plugin called Mention.
When accessing
editorState.content.entityMap.mention
, I am able to retrieve the value by:
mention.get('address')
However, when I attempt to verify if it is a Map
using:
console.log('mention', mention);
console.log('mention instanceof Map', mention instanceof Map);
The result returned is false
. Although the console indicates that mention
is indeed a Map.