mirror of
https://github.com/Azure/setup-helm.git
synced 2025-11-07 21:16:57 +00:00
12 lines
253 B
JavaScript
12 lines
253 B
JavaScript
define(function () {
|
|
|
|
// Internal helper to generate a function to obtain property `key` from `obj`.
|
|
function shallowProperty(key) {
|
|
return function(obj) {
|
|
return obj == null ? void 0 : obj[key];
|
|
};
|
|
}
|
|
|
|
return shallowProperty;
|
|
|
|
});
|