UNPKG

@alexssmusica/node-pdf-nfe

Version:

Modulo que auxilia na geração da Danfe NFe e NFCe.

10 lines (9 loc) 365 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.linhaVertical = linhaVertical; function linhaVertical({ ajusteX, ajusteY, doc, margemEsquerda, margemTopo, x, y1, y2 }) { x = margemEsquerda + ajusteX + x; y1 = margemTopo + ajusteY + y1; y2 = margemTopo + ajusteY + y2; doc.moveTo(x, y1).lineTo(x, y2).stroke(); }