Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
#222 Restore missing var to export.
  • Loading branch information
MikeMcl committed Feb 24, 2019
1 parent c316b1f commit e453266
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bignumber.mjs
Expand Up @@ -46,7 +46,7 @@
*/


var BigNumber,
var
isNumeric = /^-?(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?$/i,

mathceil = Math.ceil,
Expand Down Expand Up @@ -2883,6 +2883,6 @@ function toFixedPoint(str, e, z) {
// EXPORT


export BigNumber = clone();
export var BigNumber = clone();

export default BigNumber;

0 comments on commit e453266

Please sign in to comment.