1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-13 10:11:50 +00:00

Fix stringification of things inside of eval

This commit is contained in:
Edward Badel 2022-01-29 10:10:40 -05:00
parent e8cb7b105f
commit 966ab25dab

View File

@ -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")`;
};