How to debug lodash chain functions in browser.
Ex:
if (_.size(_.values(_.omit(this.user, 'language')).filter(Boolean)) < 2)
If we want to debug _.omit(this.user, 'language')
and then the end result with another function _.values()
as shown in the example,what should be done.
I tried searching but can only find console.log but if we want to debug right in the browser how can we do it.