From 4392caf6c06b51eaab2e4e2c808bfaf9293c7519 Mon Sep 17 00:00:00 2001 From: Taylor Dawson Date: Mon, 6 Dec 2021 16:38:27 -0800 Subject: [PATCH] Remove comment --- src/build.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build.ts b/src/build.ts index 1af1168..7cf1ab2 100644 --- a/src/build.ts +++ b/src/build.ts @@ -17,7 +17,7 @@ const getEnumKey = (chainName: string) => { let enumKey = capitalize(chainName.replace(/\s/g, '')) // If the key starts with a number or contains ',' or '.' then wrap it in quotes enumKey = !!chainName.match(/^\d|[\-\.]/) ? `'${enumKey}'` : enumKey - return enumKey // `${enumKey} = '${chainName}'` + return enumKey } const getBuildEnums = (chains: Chain[]) =>