_toPath.js 218 B

12345678
  1. import _ from './underscore.js';
  2. import './toPath.js';
  3. // Internal wrapper for `_.toPath` to enable minification.
  4. // Similar to `cb` for `_.iteratee`.
  5. export default function toPath(path) {
  6. return _.toPath(path);
  7. }