From 966ab25dabe4450f9c06bd0e75a390b60075e225 Mon Sep 17 00:00:00 2001 From: Edward Badel Date: Sat, 29 Jan 2022 10:10:40 -0500 Subject: [PATCH] Fix stringification of things inside of eval --- gulp/mod.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/mod.js b/gulp/mod.js index ccbd942b..87912bb3 100644 --- a/gulp/mod.js +++ b/gulp/mod.js @@ -1,3 +1,3 @@ module.exports = function (source, map) { - return source + `\nexport let $s=(n,v)=>eval(n+"="+v)`; + return source + `\nexport let $s=(n,v)=>eval(n+"=v")`; };