UNPKG

@accounter/israeli-vat-scraper

Version:
11 lines (10 loc) 295 B
import { config } from 'dotenv'; import { vatScraper } from '../index.js'; config({ path: [`.env`, `../../.env`] }); const testRun = async () => { vatScraper(undefined, { years: [[2020, [5]]], visibleBrowser: true }); }; testRun().catch(e => { console.error(e); process.exit(1); });