When utilizing lodash's _.forIn
function, you will have access to a callback that includes both the key and value of the current element.
_.forIn({...}, callback);
function callback(key, value) {...}
Is there a method available to pass an additional third parameter to this function?