No Description

_toPath.js 261B

1234567891011
  1. define(['./underscore', './toPath'], function (underscore, toPath$1) {
  2. // Internal wrapper for `_.toPath` to enable minification.
  3. // Similar to `cb` for `_.iteratee`.
  4. function toPath(path) {
  5. return underscore.toPath(path);
  6. }
  7. return toPath;
  8. });