Skip to content

Commit 216913f

Browse files
committed
Use lodash directly
1 parent 7986bd3 commit 216913f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"dependencies": {
8080
"babel-runtime": "^6.23.0",
8181
"classnames": "^2.2.3",
82-
"lodash.debounce": "^4.0.8",
82+
"lodash": "^4.17.5",
8383
"prop-types": "^15.5.7"
8484
}
8585
}

src/Steps.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React, { cloneElement, Children, Component } from 'react';
33
import PropTypes from 'prop-types';
44
import { findDOMNode } from 'react-dom';
55
import classNames from 'classnames';
6-
import debounce from 'lodash.debounce';
6+
import debounce from 'lodash/debounce';
77
import { isFlexSupported } from './utils';
88

99
export default class Steps extends Component {

0 commit comments

Comments
 (0)