All files / src/renderers renderToNow.ts

100% Statements 5/5
100% Branches 1/1
100% Functions 1/1
100% Lines 4/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12          7x 40x 3x   37x    
import type { ContentRenderer } from './types';
 
/**
 * Renders interval-to-now output.
 */
export const renderToNow: ContentRenderer = ({ props, datetime }) => {
  if (props.toNow) {
    return datetime.toNow(props.ago);
  }
  return undefined;
};