All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.cjs.propertyOf.js Maven / Gradle / Ivy

The newest version!
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;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy