We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 611d266 commit 2bde594Copy full SHA for 2bde594
doc/manual/usage.md
@@ -1,18 +1,10 @@
1
# Usage
2
3
-The code needs a ES2015+ polyfill to work, for example
4
-[regenerator-runtime/runtime](https://babeljs.io/docs/usage/polyfill).
+Require the library where needed
5
```js
6
-require( 'regenerator-runtime/runtime' ) ;
+const { ZZ } = require( '@aureooms/js-integer' ) ;
7
// or
8
-import 'regenerator-runtime/runtime.js' ;
9
-```
10
-
11
-Then
12
-```js
13
-const integer = require( '@aureooms/js-integer' ) ;
14
-// or
15
-import * as integer from '@aureooms/js-integer' ;
+import { ZZ } from '@aureooms/js-integer' ;
16
```
17
18
## Notation
0 commit comments