UNPKG

@alexssmusica/node-pdf-nfe

Version:

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

17 lines (16 loc) 586 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.linhaHorizontal = linhaHorizontal; function linhaHorizontal({ ajusteX, ajusteY, doc, x1, x2, y, margemDireita, margemEsquerda, margemTopo, tracejada = false }) { y = margemTopo + ajusteY + y; x1 = margemEsquerda + ajusteX + x1; x2 = margemDireita + ajusteX + x2; if (tracejada) { doc.save(); doc.lineWidth(0.2).moveTo(x1, y).lineTo(x2, y).dash(5, { space: 2 }).stroke(); doc.restore(); } else { doc.moveTo(x1, y).lineTo(x2, y).stroke(); } }