1
2
3
4
5
6
7
8
9
10
11
12
| 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;
|
| });
|
|