7fife-backend/node_modules/underscore/amd/toPath.js

13 lines
304 B
JavaScript
Raw Normal View History

2024-03-07 13:01:44 +00:00
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;
});