mirror of
https://github.com/Azure/setup-helm.git
synced 2026-07-06 16:31:38 +00:00
a517f2ff65
Co-authored-by: taakleton <taakleton@users.noreply.github.com>
7 lines
202 B
JavaScript
7 lines
202 B
JavaScript
// Internal helper to generate a function to obtain property `key` from `obj`.
|
|
export default function shallowProperty(key) {
|
|
return function(obj) {
|
|
return obj == null ? void 0 : obj[key];
|
|
};
|
|
}
|