No Description

_toPath.js 252B

12345678910
  1. var underscore = require('./underscore.js');
  2. require('./toPath.js');
  3. // Internal wrapper for `_.toPath` to enable minification.
  4. // Similar to `cb` for `_.iteratee`.
  5. function toPath(path) {
  6. return underscore.toPath(path);
  7. }
  8. module.exports = toPath;