Учитывая следующую строку:
htmlStr1 = " <div>This is a string with whitespace in the beginning</div> ";
htmlStr2 = "<div>This is a string with no whitespace in the beginning</div> ";
Есть ли способ написать функцию, которая может определить, есть ли в этой строке пробелы только в самом начале?
например, он должен делать следующее:
alert( checkBeginningWhiteSpace(htmlStr1) ); // should return "true"
alert( checkBeginningWhiteSpace(htmlStr2) ); // should return "false"