source: frontend/node_modules/underscore/amd/toPath.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 304 bytes
Line 
1define(['./underscore', './isArray'], function (underscore, isArray) {
2
3 // Normalize a (deep) property `path` to array.
4 // Like `_.iteratee`, this function can be customized.
5 function toPath(path) {
6 return isArray(path) ? path : [path];
7 }
8 underscore.toPath = toPath;
9
10 return toPath;
11
12});
Note: See TracBrowser for help on using the repository browser.