propertyOf_.propertyOf(object)
Inverse of _.property. Takes an object and returns a function which will return the value of a provided property.
var stooge = {name: 'moe'};
_.propertyOf(stooge)('name');
=> 'moe'
propertyOf_.propertyOf(object)
Inverse of _.property. Takes an object and returns a function which will return the value of a provided property.
var stooge = {name: 'moe'};
_.propertyOf(stooge)('name');
=> 'moe'
Please login to continue.