function lowerFirst()

in sync-api-docs/generateMarkdown.js [143:145]


function lowerFirst(s) {
  return s[0].toLowerCase() + s.slice(1);
}