UNPKG

async-pdf

Version:
14 lines (13 loc) 342 B
export function PDFVerticalAlignmentFormatter(align, position, size) { switch (align) { case 'center': position = position - (size / 2); break; case 'left': break; case 'right': position = position - size; break; default: break; } return position; }