Webpack build for branch master: 98b81fac38

This commit is contained in:
Travis CI 2017-09-10 15:30:27 +00:00
parent ad5ce704a1
commit 6a38d344f9
2 changed files with 3 additions and 3 deletions

View file

@ -3833,7 +3833,7 @@ class Permissions {
let total = 0;
for (let p = permissions.length - 1; p >= 0; p--) {
const perm = this.constructor.resolve(permissions[p]);
if ((this.bitfield & perm) !== perm) total |= perm;
total |= perm;
}
if (Object.isFrozen(this)) return new this.constructor(this.bitfield | total);
this.bitfield |= total;
@ -3849,7 +3849,7 @@ class Permissions {
let total = 0;
for (let p = permissions.length - 1; p >= 0; p--) {
const perm = this.constructor.resolve(permissions[p]);
if ((this.bitfield & perm) === perm) total |= perm;
total |= perm;
}
if (Object.isFrozen(this)) return new this.constructor(this.bitfield & ~total);
this.bitfield &= ~total;

File diff suppressed because one or more lines are too long