Home Manual Reference Source

Overview

Installation

Can be managed using yarn, npm, or jspm.

yarn

yarn add @integer-sorting/radix-sort

npm

npm install @integer-sorting/radix-sort --save

jspm

jspm install npm:@integer-sorting/radix-sort

Usage

:warning: The code requires 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 radixsort = await import( '@integer-sorting/radix-sort' ) ;
// or
import * as radixsort from '@integer-sorting/radix-sort' ;

Examples

More examples in the test files.