You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;