UNPKG

botframework-webchat-component

Version:
11 lines (8 loc) 275 B
import updateIn from 'simple-update-in'; export default function updateMarkdownItAttrs(token, updater) { return updateIn(token, ['attrs'], attrs => { const map = Object.fromEntries(attrs); const nextMap = updater(map); return Object.entries(nextMap); }); }