From 8fdad6a617c234664b6c68bf4a3c1f13959990ed Mon Sep 17 00:00:00 2001 From: davetayls Date: Sat, 17 Jan 2015 11:12:53 +0000 Subject: [PATCH] add reduce with ObjectIterator --- underscore/underscore.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/underscore/underscore.d.ts b/underscore/underscore.d.ts index 8cf92df12..a6d48b759 100644 --- a/underscore/underscore.d.ts +++ b/underscore/underscore.d.ts @@ -179,6 +179,12 @@ interface UnderscoreStatic { memo?: TResult, context?: any): TResult; + reduce( + list: _.Collection, + iterator: _.ObjectIterator, + memo?: TResult, + context?: any): TResult; + /** * @see _.reduce **/