toLowerCase
description
Returns the input string as a lower case string. It works exactly like String.prototype.toLowerCase
and simply avoiding writing non point-free functions, which can be harder to read in function composition chains, such as compose(str => str.toLowerCase(), get('hello'))({hello: 'WoRlD'})
.
example
Last updated