tools/text/case normalizer
// textnew

case normalizer

camelCase, snake_case, kebab-case, PascalCase and more

— paste text or identifier to start // client-only
camelCase
PascalCase
snake_case
SCREAMING_SNAKE
kebab-case
COBOL-CASE
dot.case
Title Case
Sentence case
lowercase
UPPERCASE
curl -sX POST 'https://api.whittly.dev/v1/case/convert' \
  -H 'Authorization: Bearer $WHITTLY_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"input":"myVariableName","formats":["snake","kebab","pascal"]}'
const res = await fetch('https://api.whittly.dev/v1/case/convert', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer ' + apiKey,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ input: "myVariableName", formats: ["snake","kebab","pascal"] }),
});
const data = await res.json();
const { data } = await axios.post(
  'https://api.whittly.dev/v1/case/convert',
  { input: "myVariableName", formats: ["snake","kebab","pascal"] },
  { headers: { Authorization: 'Bearer ' + apiKey } }
);
// probulk batch conversionpro·history syncproupgrade →
// history
Pro Cloud Sync — upgrade
no operations yet