UNPKG

@atlaskit/renderer

Version:
6 lines 258 B
import { timestampToIsoFormat } from '@atlaskit/editor-common/utils'; import { getText } from '../../utils'; const date = (node, _schema) => { return node.attrs.timestamp ? timestampToIsoFormat(node.attrs.timestamp) : getText(node); }; export default date;