Skip to content

Commit a3d8437

Browse files
authored
Remove module exports in BigInteger.js (Dash-Industry-Forum#4756)
1 parent c0d7a21 commit a3d8437

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

externals/BigInteger.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1280,9 +1280,7 @@ var bigInt = function (undefined) {
12801280
};
12811281
return Integer
12821282
}();
1283-
if (typeof module !== 'undefined' && module.hasOwnProperty('exports')) {
1284-
module.exports = bigInt
1285-
}
1283+
12861284
if (typeof define === 'function' && define.amd) {
12871285
define('big-integer', [], function () {
12881286
return bigInt

0 commit comments

Comments
 (0)