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