trim_start
Trims whitespace from the start of a string.
trim_start(x:string) -> string
Description
Section titled “Description”The trim_start
function removes leading whitespace from x
.
Examples
Section titled “Examples”Trim whitespace from the start
Section titled “Trim whitespace from the start”from {x: " hello".trim_start()}
{x: "hello"}