From bb9e3ef86cf80e0e0b094dbd04b5a984c0544558 Mon Sep 17 00:00:00 2001 From: Ilya Mochalov Date: Sun, 2 Aug 2015 00:58:12 +0500 Subject: [PATCH] lodash: added _.support.enumPrototypes property --- lodash/lodash.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lodash/lodash.d.ts b/lodash/lodash.d.ts index c75ca9979f..5dec75e0af 100644 --- a/lodash/lodash.d.ts +++ b/lodash/lodash.d.ts @@ -114,6 +114,14 @@ declare module _ { **/ enumErrorProps: boolean; + /** + * Detect if prototype properties are enumerable by default. + * + * Firefox < 3.6, Opera > 9.50 - Opera < 11.60, and Safari < 5.1 (if the prototype or a property on the + * prototype has been set) incorrectly set the [[Enumerable]] value of a function’s prototype property to true. + **/ + enumPrototypes: boolean; + /** * Detect if Function#bind exists and is inferred to be fast (all but V8). **/