From 937451823706a63c0ee5d8fea1f59236b40ba249 Mon Sep 17 00:00:00 2001 From: Skillz Date: Tue, 18 Aug 2020 11:36:30 -0400 Subject: [PATCH] remove export default, they suck --- src/utils/collection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/collection.ts b/src/utils/collection.ts index 90268ac33..84d3bba17 100644 --- a/src/utils/collection.ts +++ b/src/utils/collection.ts @@ -1,6 +1,6 @@ import { chooseRandom } from "./utils.ts"; -export default class Collection extends Map { +export class Collection extends Map { maxSize?: number; set(key: K, value: V) {