Returns the string that removed the leftmost given string
Optional
the text to inspect
the string to remove
the string that removed the leftmost given string
removeStart('foobar', 'hello'); // 'foobar'removeStart('foobar', 'foo'); // 'bar' Copy
removeStart('foobar', 'hello'); // 'foobar'removeStart('foobar', 'foo'); // 'bar'
Returns the string that removed the leftmost given string