From 4d944a9a71b79c2d0e604e73bef17732caac8acb Mon Sep 17 00:00:00 2001 From: Jason Rhodes Date: Thu, 9 Jan 2020 08:56:45 -0500 Subject: [PATCH] Implements destructured imports for lodash methods Co-Authored-By: John Schulz --- .../lib/adapters/log_entries/kibana_log_entries_adapter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/infra/server/lib/adapters/log_entries/kibana_log_entries_adapter.ts b/x-pack/plugins/infra/server/lib/adapters/log_entries/kibana_log_entries_adapter.ts index f26a6ab22e0a9..79fa19cf7241b 100644 --- a/x-pack/plugins/infra/server/lib/adapters/log_entries/kibana_log_entries_adapter.ts +++ b/x-pack/plugins/infra/server/lib/adapters/log_entries/kibana_log_entries_adapter.ts @@ -8,7 +8,7 @@ import { timeMilliseconds } from 'd3-time'; import * as runtimeTypes from 'io-ts'; -import _ from 'lodash'; +import { first, get, has, zip } from 'lodash'; import { pipe } from 'fp-ts/lib/pipeable'; import { map, fold } from 'fp-ts/lib/Either'; import { identity, constant } from 'fp-ts/lib/function';