aboutsummaryrefslogtreecommitdiff
path: root/webAO/client/isCategory.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webAO/client/isCategory.ts')
-rw-r--r--webAO/client/isCategory.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/webAO/client/isCategory.ts b/webAO/client/isCategory.ts
index 0d2b8df..3f3dfd5 100644
--- a/webAO/client/isCategory.ts
+++ b/webAO/client/isCategory.ts
@@ -1,6 +1,6 @@
export const isCategory = (trackname: string) => {
- const audioEndings = ["==", "--"];
- return (
- audioEndings.filter((ending) => trackname.startsWith(ending)).length === 1
- );
-} \ No newline at end of file
+ const audioEndings = ["==", "--"];
+ return (
+ audioEndings.filter((ending) => trackname.startsWith(ending)).length === 1
+ );
+};