FLUJOS/VISUALIZACION/node_modules/underscore/modules/propertyOf.js
2025-11-07 00:06:12 +01:00

10 lines
267 B
JavaScript
Executable file

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