Files
ts-scripts/single-scripts/decode-uri.ts
2026-02-11 22:37:32 +08:00

33 lines
866 B
TypeScript
Executable File

#!/usr/bin/env runts -- --allow-import
import {args, exit} from "https://script.hatter.ink/@41/deno-commons-mod.ts";
import {parseArgs} from "jsr:@std/cli/parse-args";
import {toArrayBuffer} from "https://deno.land/std@0.203.0/streams/mod.ts";
const flags = parseArgs(args(), {
boolean: ["help"],
string: ["value"],
alias: {
V: "value",
},
});
if (flags.help) {
console.log("echo value | decode-uri.ts");
console.log("decode-uri.ts --value <value>");
exit(0);
}
let input;
if (flags.value) {
input = flags.value;
} else {
input = new TextDecoder().decode(await toArrayBuffer(Deno.stdin.readable));
}
const encoded = decodeURI(input);
console.log(encoded);
// @SCRIPT-SIGNATURE-V1: yk-r1.ES256.20260211T223656+08:00.MEUCIQD2Z+EYNFmlGJF1mRwZ
// WtcimdYPCpkEiGWJ2nCoEFZhSAIgIcokRXUdswb+o/tjq098FbaBSRu2xk8t1qgKvBFp3hw=