This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function safe_eval(code, ctx) { | |
return (new Function (["window", "undefined"], "try { " + code + " } catch (e){ return e; }"))(ctx); | |
} | |
function restrict (base, perm) { | |
var out = {}, k = null, | |
READ = 'read', | |
WRITE = 'write', | |
RW = 'readwrite'; | |