UNPKG

get-graphql-from-jsonschema

Version:

get-graphql-from-jsonschema gets a GraphQL schema from a JSON schema.

8 lines (6 loc) 188 B
const toPascalCase = function (words: string[]): string { return words. map((word): string => `${word[0].toUpperCase()}${word.slice(1)}`). join(''); }; export { toPascalCase };