Home Manual Reference Source

Overview

Installation

Can be managed using yarn, npm, or jspm.

yarn

yarn add @number-theoretic/integers

npm

npm install @number-theoretic/integers --save

jspm

jspm install npm:@number-theoretic/integers

Usage

:warning: Depending on your environment, the code may require regeneratorRuntime to be defined, for instance by importing regenerator-runtime/runtime.

First, require the polyfill at the entry point of your application

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

Then, import the library where needed

const integers = await import('@number-theoretic/integers');
// or
import * as integers from '@number-theoretic/integers';

Examples

More examples in the test files.