lowercaseFirst method

String lowercaseFirst()

문자열의 첫 글자를 소문자로 변환합니다.

Implementation

String lowercaseFirst() {
  if (isEmpty) {
    return this;
  }
  return this[0].toLowerCase() + substring(1);
}