Applies a lens to all keys of the input object.
object.keys: Object -> Object
lenses: Lens
This lens transforms all keys of its input object by using the lenses provided.
Applying the following lens:
---
object.keys:
lenses:
- str.upcase
to the following input:
---
firstname: 'Bernard'
company: 'Enspirit'
will return:
---
FIRSTNAME: 'Bernard'
COMPANY: 'Enspirit'