mirror of
https://github.com/Azure/setup-helm.git
synced 2025-11-08 13:36:56 +00:00
12 lines
304 B
JavaScript
12 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;
|
|
|
|
});
|