setup-maven-cached/node_modules/underscore/modules/propertyOf.js
2022-06-28 10:39:30 +02:00

11 lines
267 B
JavaScript

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);
};
}