mirror of
https://github.com/stCarolas/setup-maven.git
synced 2024-11-27 05:36:09 +08:00
13 lines
304 B
JavaScript
13 lines
304 B
JavaScript
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;
|
|
|
|
});
|