1
0
Fork 0

prefer forEach to for

Esse commit está contido em:
AJ ONeal 2017-10-24 10:47:08 -06:00
commit afd8b6fb90
1 arquivos alterados com 2 adições e 2 exclusões

Ver arquivo

@ -49,8 +49,8 @@ var types = exports.DNS_TYPES = {
};
// and in reverse
for (var key in types) {
Object.keys(types).forEach(function (key) {
types[types[key]] = key;
}
});
}('undefined' !== typeof window ? window : exports));