Home Manual Reference Source

Overview

Installation

Can be managed using jspm or npm.

jspm

jspm install npm:@arithmetic-type/uint64

npm

npm install @arithmetic-type/uint64 --save

Usage

The code needs a ES2015+ polyfill to work, for example regenerator-runtime/runtime.

await import( 'regenerator-runtime/runtime.js' ) ;
// or
import 'regenerator-runtime/runtime.js' ;

Then

const uint64 = await import( '@arithmetic-type/uint64' ) ;
// or
import * as uint64 from '@arithmetic-type/uint64' ;

Example