forked from actions/setup-maven
12 lines
308 B
JavaScript
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;
|