@accounter/israeli-vat-scraper
Version:
Scraper app for fetching Israeli VAT data
13 lines (12 loc) • 406 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const dotenv_1 = require("dotenv");
const index_js_1 = require("../index.js");
(0, dotenv_1.config)({ path: [`.env`, `../../.env`] });
const testRun = async () => {
(0, index_js_1.vatScraper)(undefined, { years: [[2020, [5]]], visibleBrowser: true });
};
testRun().catch(e => {
console.error(e);
process.exit(1);
});