Skip to content

Commit

Permalink
Rename helpers to utils
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiko Naito committed Feb 14, 2017
1 parent fd4731f commit d4a3c3f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Map/Choropleth.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Map, TileLayer } from 'react-leaflet';
import L from 'leaflet';
import d3 from 'd3';
import _ from 'lodash';
import { getLatLongBounds } from 'lib/helpers';
import { getLatLongBounds } from 'lib/utils';
import { CONFIG } from 'constants';
import styles from 'styles/choropleth.css';
import GeoJsonUpdatable from './GeoJsonUpdatable';
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/modules/indicatorData.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import _ from 'lodash';
import { rowFormatter } from 'lib/helpers';
import { rowFormatter } from 'lib/utils';
import Soda from 'lib/Soda';
import { CONFIG } from 'constants';

Expand Down
2 changes: 1 addition & 1 deletion src/modules/map.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import _ from 'lodash';
import L from 'leaflet';
import { getLatLongBounds, rowFormatter } from 'lib/helpers';
import { getLatLongBounds, rowFormatter } from 'lib/utils';
import Soda from 'lib/Soda';
import { setLocationFilter } from 'modules/filters';
import { CONFIG, GEOJSON } from 'constants';
Expand Down

0 comments on commit d4a3c3f

Please sign in to comment.