Fix _.support.enumErrorProps docs.

Former-commit-id: f7aa45537b1e4d173f966a78f89b183c444faaeb
This commit is contained in:
John-David Dalton
2013-05-16 09:12:56 -07:00
parent d162eed4c7
commit a56ba245ea

View File

@@ -351,6 +351,7 @@
* Detect if `name` or `message` properties of `Error.prototype` are
* enumerable by default. (IE < 9, Safari < 5.1)
*
* @memberOf _.support
* @type Boolean
*/
support.enumErrorProps = propertyIsEnumerable.call(errorProto, 'message') || propertyIsEnumerable.call(errorProto, 'name');