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
David Hsing
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