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

package.modules._shallowProperty.js Maven / Gradle / Ivy

The newest version!
// Internal helper to generate a function to obtain property `key` from `obj`.
export default function shallowProperty(key) {
  return function(obj) {
    return obj == null ? void 0 : obj[key];
  };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy