Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. (function() {
  2. var blocks = {};
  3. window.setBlock = function(name) { if (name in blocks) return false; return blocks[name] = true; }
  4. window.clearBlock = function(name) { delete blocks[name]; return true; }
  5. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement