@SnareChops was basically correct:
mySet.forEach(function(item){
It works.
I suppose:
for(item of mySet.values()){ }
Will work if I don't work with es-shim files that messed up everything for me. But the cushioning material is prescribed by the Angular 2 crew, therefore ¯_ (ツ) _ / ¯
The only thing that worked was:
for (var item of Arrays.from(set.values())) { }
or something like that, which is just awful.
Programmer9000
source share