(iterable)
| 1517 | }); |
| 1518 | |
| 1519 | function Dict(iterable){ |
| 1520 | var dict = $.create(null); |
| 1521 | if(iterable != undefined){ |
| 1522 | if(isIterable(iterable)){ |
| 1523 | forOf(iterable, true, function(key, value){ |
| 1524 | dict[key] = value; |
| 1525 | }); |
| 1526 | } else assign(dict, iterable); |
| 1527 | } |
| 1528 | return dict; |
| 1529 | } |
| 1530 | Dict.prototype = null; |
| 1531 | |
| 1532 | function reduce(object, mapfn, init){ |
nothing calls this directly
no outgoing calls
no test coverage detected