We've seen how we can transduce
from arrays or other iterables, but plain objects aren't iterable in Javascript.
In this lesson we'll modify our transduce()
function so that it supports iterating from plain objects as well, treating each key value pair as an entry in the collection.
To do this we'll be using a lodash function called entries.