aboutsummaryrefslogtreecommitdiff
path: root/deno/base
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-07-01 17:29:07 +0800
committerYuqian Yang <crupest@crupest.life>2025-07-01 17:29:07 +0800
commit1050e8db3015e7227448feca5d53a2414acf7305 (patch)
tree07d668b49bc60e6a82437bf180c1d52c986dd995 /deno/base
parent80d6b1742a6f3ea740f4673654850fb3a1105a5c (diff)
downloadcrupest-1050e8db3015e7227448feca5d53a2414acf7305.tar.gz
crupest-1050e8db3015e7227448feca5d53a2414acf7305.tar.bz2
crupest-1050e8db3015e7227448feca5d53a2414acf7305.zip
mail: remove 'aws' of aws message id map.
Diffstat (limited to 'deno/base')
-rw-r--r--deno/base/lib.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/deno/base/lib.ts b/deno/base/lib.ts
index 3c69e0a..af75115 100644
--- a/deno/base/lib.ts
+++ b/deno/base/lib.ts
@@ -3,7 +3,7 @@ function camelCaseToKebabCase(str: string): string {
}
function prependNonEmpty<T>(
- object: T,
+ object: T | null | undefined,
prefix: string = " ",
): string {
if (object == null) return "";