[Underscore] Add Iteratee shorthand syntax for some usages of map and uniq

This commit is contained in:
Vincent Jaubert
2016-10-16 17:45:29 +02:00
parent 0cc6854a16
commit 0d21cc33ca

View File

@@ -162,7 +162,7 @@ interface UnderscoreStatic {
**/
map<T, TResult>(
object: _.Dictionary<T>,
iterator: _.ObjectIterator<T, TResult> ,
iterator: _.ObjectIterator<T, TResult>,
context?: any): TResult[];