From 5573c45158baf966b89cb8749b949864be1fa65b Mon Sep 17 00:00:00 2001 From: colin Date: Sun, 6 Nov 2022 01:13:55 -0700 Subject: [PATCH] debug: try exporting a function i don't understand why i can't export my enum. --- src/helpers.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/helpers.js b/src/helpers.js index 89690b1..7dfb1ec 100644 --- a/src/helpers.js +++ b/src/helpers.js @@ -14,8 +14,13 @@ module.exports = { getSetting, ignoreFiles, makeTOTP, + expTest, }; +function expTest(foo) { + return foo * 2; +} + const SettingScope = { // query a setting first from the login, then the store, then globally Login: "login",