type.string.swapcase
0.000001

Swaps the case of a string.

Arguments
no defined arguments
Return Value
The swapcased string.
something went wrong :(
Swapping the case of a string
Setup
authorization=PROCAUTH
require "proc"

client = Proc.connect("PROCAUTH")
const Proc = require("@proc.dev/client");
const client = Proc.connect("PROCAUTH");
client.type.string.swapcase.call(
  "Hello"
)
client.type.string.swapcase.call(
  "Hello"
);
curl "https://proc.run/type/string/swapcase" --silent \
--header "authorization: bearer $authorization" \
--header "content-type: application/json" \
--data '"Hello"'
 

hELLO


Stuck? Want to chat about an idea? Join the community on Discord.