From 1a908bb7aae140b5c556c6b4e903b803820429dc Mon Sep 17 00:00:00 2001 From: Asko Nõmm Date: Sun, 12 Jan 2025 04:22:10 +0200 Subject: bump --- src/utils.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/utils.ts (limited to 'src/utils.ts') diff --git a/src/utils.ts b/src/utils.ts new file mode 100644 index 0000000..444e9a0 --- /dev/null +++ b/src/utils.ts @@ -0,0 +1,7 @@ +export function trimChar(input: string, chars: string | string[]): string { + if (typeof chars === "string") { + return input; + } + + return input; +} -- cgit v1.2.3