Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export function validationOutdatedTags(context) {
var type = 'outdated_tags';
// initialize name-suggestion-index matcher
var nsiMatcher = matcher();
nsiMatcher.buildMatchIndex(brands.brands);
var nsiKeys = ['amenity', 'shop', 'tourism', 'leisure', 'office'];
var allWD = {};
var allWP = {};
Object.keys(brands.brands).forEach(function(kvnd) {
var brand = brands.brands[kvnd];
var wd = brand.tags['brand:wikidata'];
var wp = brand.tags['brand:wikipedia'];
if (wd) { allWD[wd] = kvnd; }
if (wp) { allWP[wp] = kvnd; }
});
function oldTagIssues(entity, graph) {
var oldTags = Object.assign({}, entity.tags); // shallow copy