Skip to content
This repository has been archived by the owner on May 29, 2020. It is now read-only.

Commit

Permalink
test to build own base
Browse files Browse the repository at this point in the history
  • Loading branch information
ZaresPlusX authored Feb 11, 2020
1 parent 72c07d7 commit 2422828
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ℤ𝔼ℝ𝟘𝕏 Hack release/ℤ𝔼ℝ𝟘𝕏.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//This is a test version. I'll start to make own base. I don't know how much time gonna take.

(function() {
let shared_state = new Map(Object.entries({
functions_to_hide: new WeakMap(),
strings_to_hide: [],
hidden_globals: [],
init: false
}));

let invisible_define = function(obj, key, value) {
shared_state.get('hidden_globals').push(key);
Object.defineProperty(obj, key, {
enumberable: false,
configurable: false,
writable: true,
value: value
});
};

0 comments on commit 2422828

Please sign in to comment.