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

linux: fix topath import #569

Merged
merged 1 commit into from
Dec 9, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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