setup-maven-cached/node_modules/underscore/cjs/toPath.js

12 lines
308 B
JavaScript
Raw Permalink Normal View History

2022-06-28 16:39:30 +08:00
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;