Appearance
String.trim(target)
Removes whitespace from both ends of target string.
target
import { String } from "@monstermann/string"; String.trim(" hello world "); // "hello world"
import { String } from "@monstermann/string"; pipe(" hello world ", String.trim()); // "hello world"