File tree Expand file tree Collapse file tree 5 files changed +18
-7
lines changed
Expand file tree Collapse file tree 5 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 1+ #### 9.3.0
2+
3+ * 19/04/25
4+ * Refactor type declarations:
5+ * Rename * bignumber.d.ts* to * types.d.ts* .
6+ * Rename * bignumber.d.cts* to * bignumber.d.ts* .
7+ * Add ` export as namespace ` to * bignumber.d.ts* .
8+ * Remove subpath exports from * package.json* .
9+ * Refactor named export from * bignumber.d.mts* .
10+ * #383 Remove ` ? ` from static ` BigNumber ` and ` default ` properties.
11+ * Add blank lines after titles in * CHANGELOG.md* .
12+
113#### 9.2.1
214
315* 08/04/25
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ import BigNumber from './path/to/bignumber.mjs';
4848> Get a minified version from a CDN:
4949
5050` ` ` html
51- < script src= ' https://cdn.jsdelivr.net/npm/bignumber.js@9.2.1 /bignumber.min.js' > </script >
51+ < script src= ' https://cdn.jsdelivr.net/npm/bignumber.js@9.3.0 /bignumber.min.js' > </script >
5252```
5353
5454### [ Node.js] ( http://nodejs.org )
@@ -65,14 +65,13 @@ const BigNumber = require('bignumber.js');
6565
6666``` javascript
6767import BigNumber from " bignumber.js" ;
68- import { BigNumber } from " ./node_modules/bignumber.js/bignumber.mjs" ;
6968```
7069
7170### [ Deno] ( https://deno.land/ )
7271
7372``` javascript
74- // @deno-types="https://raw.githubusercontent.com/mikemcl/bignumber.js/v9.2.1 /bignumber.d.mts"
75- import BigNumber from ' https://raw.githubusercontent.com/mikemcl/bignumber.js/v9.2.1 /bignumber.mjs' ;
73+ // @deno-types="https://raw.githubusercontent.com/mikemcl/bignumber.js/v9.3.0 /bignumber.d.mts"
74+ import BigNumber from ' https://raw.githubusercontent.com/mikemcl/bignumber.js/v9.3.0 /bignumber.mjs' ;
7675
7776// @deno-types="https://unpkg.com/bignumber.js@latest/bignumber.d.mts"
7877import { BigNumber } from ' https://unpkg.com/bignumber.js@latest/bignumber.mjs' ;
Original file line number Diff line number Diff line change 22 'use strict' ;
33
44/*
5- * bignumber.js v9.2.1
5+ * bignumber.js v9.3.0
66 * A JavaScript library for arbitrary-precision arithmetic.
77 * https://github.com/MikeMcl/bignumber.js
88 * Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
Original file line number Diff line number Diff line change 11/*
2- * bignumber.js v9.2.1
2+ * bignumber.js v9.3.0
33 * A JavaScript library for arbitrary-precision arithmetic.
44 * https://github.com/MikeMcl/bignumber.js
55 * Copyright (c) 2025 Michael Mclaughlin <M8ch88l@gmail.com>
Original file line number Diff line number Diff line change 11{
22 "name" : " bignumber.js" ,
33 "description" : " A library for arbitrary-precision decimal and non-decimal arithmetic" ,
4- "version" : " 9.2.1 " ,
4+ "version" : " 9.3.0 " ,
55 "keywords" : [
66 " arbitrary" ,
77 " precision" ,
You can’t perform that action at this time.
0 commit comments