From 5c7e2bd12042a22f6cf146cacde9ed32653b24c0 Mon Sep 17 00:00:00 2001 From: wood chen Date: Sat, 8 Feb 2025 01:53:48 +0800 Subject: [PATCH] Fix base64 decoding import from Deno standard library --- deps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.ts b/deps.ts index 4eb4e87..62db630 100644 --- a/deps.ts +++ b/deps.ts @@ -1,3 +1,3 @@ export { serve } from "https://deno.land/std@0.220.1/http/server.ts"; export { crypto } from "https://deno.land/std@0.220.1/crypto/mod.ts"; -export { decode as base64Decode } from "https://deno.land/std@0.220.1/encoding/base64url.ts"; \ No newline at end of file +export { decode as base64Decode } from "https://deno.land/std@0.220.1/encoding/base64.ts"; \ No newline at end of file