Updated dist files.

This commit is contained in:
Richard Moore 2019-02-04 16:09:35 -05:00
parent 14484e566e
commit 527de7ba5e
No known key found for this signature in database
GPG Key ID: 525F70A6FCABC295
5 changed files with 6 additions and 6 deletions

4
dist/ethers.js vendored

@ -13518,7 +13518,7 @@ var BaseX = /** @class */ (function () {
for (var k = 0; value[k] === this._leader && k < value.length - 1; ++k) {
bytes.push(0);
}
return new Uint8Array(bytes.reverse());
return bytes_1.arrayify(new Uint8Array(bytes.reverse()));
};
return BaseX;
}());
@ -13742,7 +13742,7 @@ function addSlice(array) {
}
array.slice = function () {
var args = Array.prototype.slice.call(arguments);
return new Uint8Array(Array.prototype.slice.apply(array, args));
return addSlice(new Uint8Array(Array.prototype.slice.apply(array, args)));
};
return array;
}

2
dist/ethers.min.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -110,7 +110,7 @@ var BaseX = /** @class */ (function () {
for (var k = 0; value[k] === this._leader && k < value.length - 1; ++k) {
bytes.push(0);
}
return new Uint8Array(bytes.reverse());
return bytes_1.arrayify(new Uint8Array(bytes.reverse()));
};
return BaseX;
}());

@ -23,7 +23,7 @@ function addSlice(array) {
}
array.slice = function () {
var args = Array.prototype.slice.call(arguments);
return new Uint8Array(Array.prototype.slice.apply(array, args));
return addSlice(new Uint8Array(Array.prototype.slice.apply(array, args)));
};
return array;
}