From bea7f3c51037da0ec56262e602370b18a55b7bc2 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Wed, 5 Apr 2017 14:09:59 -0400 Subject: [PATCH] export lodash (to help with debugging) --- modules/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/index.js b/modules/index.js index 1151760f5..9277223f4 100644 --- a/modules/index.js +++ b/modules/index.js @@ -40,6 +40,7 @@ export { utilDetect as Detect } from './util/detect'; export var debug = false; import * as d3 from 'd3'; +import * as _ from 'lodash'; import * as lib from './lib/index'; -export { d3, lib }; +export { d3, _, lib };