Skip to content

Commit

Permalink
Fixup lodash usage
Browse files Browse the repository at this point in the history
Fixes a couple things that lodash 4 busted.
  • Loading branch information
blowery committed Feb 18, 2016
1 parent f54ae68 commit 0ae6854
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/my-sites/sidebar/sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
*/
var analytics = require( 'analytics' ),
classNames = require( 'classnames' ),
contains = require( 'lodash/collection/contains' ),
includes = require( 'lodash/includes' ),
debug = require( 'debug' )( 'calypso:my-sites:sidebar' ),
has = require( 'lodash/object/has' ),
React = require( 'react' ),
startsWith = require( 'lodash/string/startsWith' );
startsWith = require( 'lodash/startsWith' );

/**
* Internal dependencies
Expand Down

0 comments on commit 0ae6854

Please sign in to comment.