toLower
Syntax
toLower(input)<string>.toLower()Arguments
Examples
toLower("HELLO")
// "hello""HELLO WORLD".toLower()
// "hello world"$ echo '{"name": "TOM"}' | dasel -i json 'name.toLower()'
tomLast updated
["Alice", "BOB", "Charlie"].map(toLower($this))
// ["alice", "bob", "charlie"]