UNPKG

@atlaskit/editor-plugin-insert-block

Version:

Insert block plugin for @atlaskit/editor-core

8 lines 179 B
export const shallowEquals = ([aRaw], [bRaw]) => { const a = aRaw; const b = bRaw; return !Object.keys(a).some(key => { const k = key; return a[k] !== b[k]; }); };