Applies a lens to all values of the input object.
object.values: Object -> Object
on_error: fail|handler|keep|null|skip|[...] = fail
lenses: Lens
This lens transforms all values of its input object by using the lenses provided.
Applying the following lens:
---
object.values:
lenses:
- str.upcase
to the following input:
---
firstname: 'Bernard'
company: 'Enspirit'
will return:
---
firstname: 'BERNARD'
company: 'ENSPIRIT'