From a56ba245ea1afc01f11997edac354f365c248636 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 16 May 2013 09:12:56 -0700 Subject: [PATCH] Fix `_.support.enumErrorProps` docs. Former-commit-id: f7aa45537b1e4d173f966a78f89b183c444faaeb --- lodash.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lodash.js b/lodash.js index 7fc5d4ab7..cf96dc641 100644 --- a/lodash.js +++ b/lodash.js @@ -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');