File size: 212 Bytes
1e92f2d |
1 2 3 4 5 6 |
import 'calypso/state/comments/init';
export const getInlineCommentsExpandedState = ( state, streamKey, siteId, postId ) => {
return !! state.comments.inlineExpansion?.[ streamKey ]?.[ siteId ]?.[ postId ];
};
|