Skip to content
This repository was archived by the owner on Jun 18, 2018. It is now read-only.

Commit cba122d

Browse files
committed
Merge pull request #15 from bkniffler/master
lodash 4.0.0
2 parents 7393549 + 9eec865 commit cba122d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"webpack": "^1.12.2"
3737
},
3838
"dependencies": {
39-
"lodash": "^3.10.1"
39+
"lodash": "^4.0.0"
4040
},
4141
"peerDependencies": {
4242
"react-dnd": "^2.0.0"

src/BrowserDetector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import memoize from 'lodash/function/memoize';
1+
import memoize from 'lodash/memoize';
22

33
export const isFirefox = memoize(() =>
44
/firefox/i.test(navigator.userAgent)

src/EnterLeaveCounter.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import union from 'lodash/array/union';
2-
import without from 'lodash/array/without';
1+
import union from 'lodash/union';
2+
import without from 'lodash/without';
33

44
export default class EnterLeaveCounter {
55
constructor() {

src/HTML5Backend.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import defaults from 'lodash/object/defaults';
1+
import defaults from 'lodash/defaults';
22
import shallowEqual from './shallowEqual';
33
import EnterLeaveCounter from './EnterLeaveCounter';
44
import { isFirefox } from './BrowserDetector';

0 commit comments

Comments
 (0)