Skip to content
This repository has been archived by the owner on Aug 23, 2022. It is now read-only.

Commit

Permalink
Merge pull request #569 from mgutz/fix-to-path-import
Browse files Browse the repository at this point in the history
linux: fix topath import
  • Loading branch information
davidkpiano committed Dec 9, 2016
2 parents 742a2e7 + 41ea6db commit 66e8ef8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/utils/path-starts-with.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import toPath from 'lodash.toPath';
import toPath from 'lodash.topath';

export default function pathStartsWith(pathString, subPathString) {
if (pathString === subPathString) return true;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/to-path.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _toPath from 'lodash.toPath';
import _toPath from 'lodash.topath';
import endsWith from './ends-with';

export default function toPath(value) {
Expand Down

0 comments on commit 66e8ef8

Please sign in to comment.