Linter fixes

This commit is contained in:
Kyle Shockey
2017-12-22 22:58:37 -06:00
parent b03bf90664
commit 27156bb79d

View File

@@ -34,10 +34,3 @@ export default function transformErrors (errors, system) {
}) })
} }
function toTitleCase(str) {
return str
.split("-")
.map(substr => substr[0].toUpperCase() + substr.slice(1))
.join("")
}