Whitespace nit in _.propertyOf doc example. [ci skip]

This commit is contained in:
John-David Dalton
2014-11-09 01:38:43 -08:00
parent 9660c22a9f
commit 0c54fac651

View File

@@ -9599,7 +9599,7 @@
* @returns {Function} Returns the new function.
* @example
*
* var fred = { 'user': 'fred', 'age': 40, 'active': true };
* var fred = { 'user': 'fred', 'age': 40, 'active': true };
* _.map(['age', 'active'], _.propertyOf(fred));
* // => [40, true]
*