From 7c5e26968576eda80c132b40eb30e66b78741726 Mon Sep 17 00:00:00 2001 From: siiky Date: Fri, 28 Jun 2024 12:21:42 +0100 Subject: [PATCH] chore: drop unused import --- lib/ofac/parsing.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/ofac/parsing.js b/lib/ofac/parsing.js index a62eb69f..36b7dcd8 100644 --- a/lib/ofac/parsing.js +++ b/lib/ofac/parsing.js @@ -4,8 +4,6 @@ const nameUtils = require('./name-utils') const logger = require('../logger') const _ = require('lodash/fp') -const debug_log = require('../pp')(__filename) // KOSTIS TODO: remove - // KOSTIS TODO: get these from the document itself const INDIVIDUAL = '4' const NAME = '1403' @@ -132,8 +130,6 @@ function processProfile (profileNode) { const birthDatePeriods = mapCompact(processFeature, profileNode.Feature) const individual = {id, aliases, birthDatePeriods} - // debug_log(individual) - return individual }