Remove comment

This commit is contained in:
Chi Vinh Le
2018-07-12 14:26:17 -03:00
parent 2d69982ebb
commit 4f8d016ac8
+1 -1
View File
@@ -1,5 +1,5 @@
import { camelCase } from "lodash";
/** pascalCase */
export default function pascalCase(value: string) {
return value[0].toUpperCase() + camelCase(value).slice(1);
}