type.string.upcase0.000001
Upcases a string.
Arguments
no defined arguments
Return Value
The upcased string.something went wrong :(
Upcasing 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.upcase.call(
"hello"
)
client.type.string.upcase.call(
"hello"
);
curl "https://proc.run/type/string/upcase" --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.