UNPKG

arca-facturacion

Version:

Consultá los metodos del Web Service WSFE de ARCA rapido y facil con JavaScript

14 lines (11 loc) • 318 B
const soap = require("soap"); const https = require("https"); async function createSoapClient(wsdlUrl) { return soap.createClientAsync(wsdlUrl, { wsdl_options: { agent: new https.Agent({ rejectUnauthorized: false }), proxy: false, }, }); } module.exports = { createSoapClient };