ToLower string method
Aliases: to_lower(), lower(), lowercase()
The toLower method is used to convert a string to it’s lower case form. This can e used for case insensitive comparisons
For example:
findit -w 'content.toLower().contains("hello world")'
will show the files that has hello world in their content.