Files
DefinitelyTyped/lodash
NN 03735927ae Use DictionaryIterator for Dictionary functions
Without DictionaryIterator the simplest code is impossible to write:

var myDictionary : {[x:string]: string;}

_.filter(myDictionary, (v, k, c) => { return k == "A"; })
2015-02-24 18:02:04 +02:00
..