could something like this ```/** * @return a stri...
# strikt
c
could something like this
Copy code
/**
 * @return a string that contains only the lines containing @param pattern.
 * useful when doing contains assertions on really huge strings to make the error message easier to read
 */
private fun String?.grep(pattern: String): String {
    if (this == null)
        return ""

    return lineSequence().filter { it.contains(pattern) }.joinToString("\n")
}
be part of strikt?