mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-24 05:29:26 +08:00
a0f00e5017
Co-authored-by: OliverMKing <OliverMKing@users.noreply.github.com>
13 lines
288 B
JavaScript
13 lines
288 B
JavaScript
var noop = require('./noop.js');
|
|
var get = require('./get.js');
|
|
|
|
// 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);
|
|
};
|
|
}
|
|
|
|
module.exports = propertyOf;
|