diff --git a/src/REPLCalc/assets/js/repl-executor.js b/src/REPLCalc/assets/js/repl-executor.js index 556f22d..8fb4796 100644 --- a/src/REPLCalc/assets/js/repl-executor.js +++ b/src/REPLCalc/assets/js/repl-executor.js @@ -160,7 +160,7 @@ function withModeAppliedState(state, envOverride = null){ }; } -export function createReplExecutor({ +function createReplExecutor({ expandStatement, }){ if (typeof expandStatement !== "function"){ @@ -799,4 +799,5 @@ export function createReplExecutor({ }; } +export { createReplExecutor }; export const createExecutor = createReplExecutor;