ship-gis/node_modules/underscore/amd/toPath.js

13 lines
304 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
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;
});