13 lines
288 B
JavaScript
Raw Normal View History

2025-04-23 09:34:08 +08:00
var get = require('./get.js');
var noop = require('./noop.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;