diff --git a/src/004-base/000-proxies.js b/src/004-base/000-proxies.js index d28b2503a69bc3e04547a4efc47ff3ff24ac24d7..5d9da3f6190b4928176d0ded6c5ce8c37c424659 100644 --- a/src/004-base/000-proxies.js +++ b/src/004-base/000-proxies.js @@ -1,7 +1,7 @@ (function() { const readOnlySymbol = Symbol("readonly proxy"); globalThis.createReadonlyProxy = function(target) { - if (target == null) return target; //intentionally == + if (target == null) { return target; } // intentionally == if (target[readOnlySymbol]) { return target; } if (_.isArray(target)) { return new Proxy(target, { @@ -10,9 +10,9 @@ const val = o[prop]; if (typeof val === 'function') { if (['push', 'unshift', 'pop'].includes(prop)) { - return function () { + return function() { throw Error("Cannot modify a readonly array"); - } + }; } return val.bind(target); } @@ -44,7 +44,7 @@ }; const cheaterSymbol = Symbol("cheating proxy"); globalThis.createCheatProxy = function(target) { - if (target == null) return target; //intentionally == + if (target == null) { return target; } // intentionally == if (target[cheaterSymbol]) { return target; } if (_.isArray(target)) { return new Proxy(target, { @@ -53,12 +53,12 @@ const val = o[prop]; if (typeof val === 'function') { if (['push', 'unshift', 'pop'].includes(prop)) { - return function (el) { + return function(el) { const retval = Array.prototype[prop].apply(o, arguments); - //Make sure we set cheater after calling the function - State.variables.cheater = 1;//Can't use `V` because it probably points to a proxy. + // Make sure we set cheater after calling the function + State.variables.cheater = 1;// Can't use `V` because it probably points to a proxy. return retval; - } + }; } return val.bind(target); } @@ -66,12 +66,12 @@ }, set:function(o, prop, value) { o[prop] = value; - State.variables.cheater = 1;//Can't use `V` because it probably points to a proxy. + State.variables.cheater = 1;// Can't use `V` because it probably points to a proxy. return true; }, deleteProperty:function(o, prop) { delete o[prop]; - State.variables.cheater = 1;//Can't use `V` because it probably points to a proxy. + State.variables.cheater = 1;// Can't use `V` because it probably points to a proxy. return true; } });