Files
setup-helm/node_modules/underscore/amd/propertyOf.js
github-actions[bot] 20d2b4f98d v3 new release (#80)
2022-06-27 14:17:15 -04:00

14 lines
286 B
JavaScript

define(['./noop', './get'], function (noop, get) {
// Generates a function for a given object that returns a given property.
function propertyOf(obj) {
if (obj == null) return noop;
return function(path) {
return get(obj, path);
};
}
return propertyOf;
});