From 0d21cc33ca2817d53d06f2ec792579a06ab0a848 Mon Sep 17 00:00:00 2001 From: Vincent Jaubert Date: Sun, 16 Oct 2016 17:45:29 +0200 Subject: [PATCH] [Underscore] Add Iteratee shorthand syntax for some usages of map and uniq --- underscore/underscore.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/underscore/underscore.d.ts b/underscore/underscore.d.ts index 23a2494516..8f8e32d370 100644 --- a/underscore/underscore.d.ts +++ b/underscore/underscore.d.ts @@ -162,7 +162,7 @@ interface UnderscoreStatic { **/ map( object: _.Dictionary, - iterator: _.ObjectIterator , + iterator: _.ObjectIterator, context?: any): TResult[];