updeep/lib/util/splitPath.js
2017-04-18 17:50:29 -07:00

8 lines
168 B
JavaScript

import reject from 'lodash/reject';
export default function splitPath(path) {
return Array.isArray(path) ?
path :
reject((`${path}`).split('.'), x => !x);
}