Skip to content

Commit

Permalink
fix: fix IE11 by replacing arrow function (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
gesinger authored Dec 20, 2021
1 parent 4d0e4d7 commit 47302fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/numbers.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var MAX_UINT32 = Math.pow(2, 32);

var getUint64 = (uint8) => {
var getUint64 = function(uint8) {
var dv = new DataView(uint8.buffer, uint8.byteOffset, uint8.byteLength);
var value;

Expand Down

0 comments on commit 47302fe

Please sign in to comment.