Your IP : 216.73.216.79


Current Path : /var/www/html/reddsis/node_modules/underscore/modules/
Upload File :
Current File : /var/www/html/reddsis/node_modules/underscore/modules/propertyOf.js

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