Garden 🌻

String::lines()

Split this string into a list of lines.

Example
"a\nb".lines() //-> ["a", "b"]
Source Code
public method lines(this: String): List<String> {
  __BUILT_IN_IMPLEMENTATION
}