All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.amd.toPath.js Maven / Gradle / Ivy

The newest version!
define(['./underscore', './isArray'], function (underscore, isArray) {

  // Normalize a (deep) property `path` to array.
  // Like `_.iteratee`, this function can be customized.
  function toPath(path) {
    return isArray(path) ? path : [path];
  }
  underscore.toPath = toPath;

  return toPath;

});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy