cia-world-leaders
Version:
Serves as an independent data scraping module, complete with ontology and full scraping ability for the CIA World Leaders site
16 lines (15 loc) • 543 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var globalStore_1 = require("../constants/globalStore");
function flushStore() {
globalStore_1.store.countries = {};
globalStore_1.store.countriesInList = [];
globalStore_1.store.countriesNotFound = [];
globalStore_1.store.failedCountries = [];
globalStore_1.store.govOffices = {};
globalStore_1.store.persons = {};
globalStore_1.store.jsonLD = [];
globalStore_1.store.jsonNT = '';
}
exports.flushStore = flushStore;
;
;