Files
setup-helm/node_modules/underscore/cjs/toPath.js
github-actions[bot] 20d2b4f98d v3 new release (#80)
2022-06-27 14:17:15 -04:00

12 lines
308 B
JavaScript

var underscore = require('./underscore.js');
var isArray = require('./isArray.js');
// 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;
module.exports = toPath;