Files
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

13 lines
304 B
JavaScript

define(['./isArray', './underscore'], function (isArray, underscore) {
// 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;
});