cb783257d8924521d9a05e55c821417c7ff1039d.svn-base 173 Bytes
module.exports = function toFunctionName(typeName) {
  const _ = typeName.replace(/^TS/, "ts").replace(/^JSX/, "jsx");
  return _.slice(0, 1).toLowerCase() + _.slice(1);
};