Initial commit

This commit is contained in:
2021-03-14 11:09:02 +01:00
commit 21e364ee38
1046 changed files with 126647 additions and 0 deletions

14
node_modules/underscore/amd/property.js generated vendored Normal file
View File

@ -0,0 +1,14 @@
define(['./_deepGet', './_toPath'], function (_deepGet, _toPath) {
// Creates a function that, when passed an object, will traverse that objects
// properties down the given `path`, specified as an array of keys or indices.
function property(path) {
path = _toPath(path);
return function(obj) {
return _deepGet(obj, path);
};
}
return property;
});