Current section

Files

Jump to
excessibility assets node_modules underscore amd toPath.js
Raw

assets/node_modules/underscore/amd/toPath.js

define(['./isArray', './underscore'], function (isArray, underscore) {
// 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;
});