debugging

This commit is contained in:
MathMan05 2024-07-30 15:29:20 -05:00
parent 8fca79997a
commit 7009138be5

View file

@ -5,6 +5,7 @@ class Permissions {
hasDeny;
constructor(allow, deny = "") {
this.hasDeny = !!deny;
console.log(allow,deny);
this.allow = BigInt(allow);
this.deny = BigInt(deny);
}