11 lines
267 B
JavaScript
Raw Permalink Normal View History

2025-04-23 09:34:08 +08:00
import noop from './noop.js';
import get from './get.js';
// Generates a function for a given object that returns a given property.
export default function propertyOf(obj) {
if (obj == null) return noop;
return function(path) {
return get(obj, path);
};
}