Skip to content
This repository has been archived by the owner on Feb 7, 2023. It is now read-only.

Commit

Permalink
Workaround FF + uglify bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Lippai authored and alippai committed Aug 1, 2018
1 parent 7cfab68 commit 51eb73d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/bignum/bigint.asm.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Limbs number is a power of 2 and a multiple of 8 (256 bits).
* Negative values use two's complement representation.
*/
export function bigint_asm ( stdlib, foreign, buffer ) {
export var bigint_asm = function ( stdlib, foreign, buffer ) {
"use asm";

var SP = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/hash/sha1/sha1.asm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export function sha1_asm ( stdlib, foreign, buffer ) {
export var sha1_asm = function ( stdlib, foreign, buffer ) {
"use asm";

// SHA256 state
Expand Down
2 changes: 1 addition & 1 deletion src/hash/sha256/sha256.asm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export function sha256_asm ( stdlib, foreign, buffer ) {
export var sha256_asm = function ( stdlib, foreign, buffer ) {
"use asm";

// SHA256 state
Expand Down
2 changes: 1 addition & 1 deletion src/hash/sha512/sha512.asm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export function sha512_asm ( stdlib, foreign, buffer ) {
export var sha512_asm = function ( stdlib, foreign, buffer ) {
"use asm";

// SHA512 state
Expand Down

0 comments on commit 51eb73d

Please sign in to comment.