trim_leading
trim characters off the start of a string
Examples:
trim_leading(' SOMETHING ', ' ')
-- Result: "SOMETHING "
trim_leading(',a,b,c,d,', ',')
-- Result: "a,b,c,d,"
trim_leading(' SOMETHING ', 'nope')
-- Result: " SOMETHING "
text, text -> text