We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60b75c1 commit a2306f7Copy full SHA for a2306f7
tests/test-utils.js
@@ -354,7 +354,7 @@ describe("Hexlify", function() {
354
assert(ethers.utils.hexlify(ethers.utils.bigNumberify("9985956830000000000")), "0x8a953ed43a892c00", "hexlify on large BigNumber");
355
});
356
357
- [9007199254740991, 9985956830000000000].forEach((value) => {
+ [9007199254740991, 9985956830000000000].forEach(function(value) {
358
it('hexlify fails on unsafe number - ' + value, function() {
359
assert.throws(function() {
360
var result = ethers.utils.hexlify(value);
0 commit comments