Given a string, remove all whitespace from the beginning of the string.
// input: const s = ' hello world ' // output: 'hello world '
/* output */