function firstLetterUpper()

in lib/rpc.js [11:13]


function firstLetterUpper(str) {
  return str.slice(0, 1).toUpperCase() + str.slice(1);
}