aboutsummaryrefslogtreecommitdiff
path: root/src/context.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/context.ts')
-rw-r--r--src/context.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/context.ts b/src/context.ts
index adc0be5..fe33731 100644
--- a/src/context.ts
+++ b/src/context.ts
@@ -116,7 +116,7 @@ export const createContext = (options: CtxOptions): Ctx => {
evaluateType,
newScope() {
- environment.unshift(new Map)
+ environment.unshift(new Map())
},
addToScope(name, resKey) {
if (environment.length === 0) ctx.newScope()
@@ -127,7 +127,7 @@ export const createContext = (options: CtxOptions): Ctx => {
environment.shift()
},
getKeyInScope(name) {
- return environment.find(scope => scope.has(name))?.get(name)
+ return environment.find((scope) => scope.has(name))?.get(name)
},
withScope: (fn) => async () => {
ctx.newScope()