mirror of
https://gitea.com/actions/setup-maven.git
synced 2025-11-09 02:56:20 +08:00
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];
|
||
|
|
};
|
||
|
|
}
|