@aureooms/js-radixsortdeprecated

radixsort code bricks for JavaScript

Usage no npm install needed!

<script type="module">
  import aureoomsJsRadixsort from 'https://cdn.skypack.dev/@aureooms/js-radixsort';
</script>

README

js-radixsort

Radixsort code bricks for JavaScript. Parent is aureooms/js-sort.

NPM license NPM version Bower version Build Status Coverage Status Dependencies Status devDependencies Status Code Climate NPM downloads per month GitHub issues Inline docs

Can be managed through jspm, duo, component, bower, ender, jam, spm, and npm.

Install

jspm

jspm install github:aureooms/js-radixsort
# or
jspm install npm:@aureooms/js-radixsort

duo

No install step needed for duo!

component

component install aureooms/js-radixsort

bower

bower install @aureooms/js-radixsort

ender

ender add @aureooms/js-radixsort

jam

jam install @aureooms/js-radixsort

spm

spm install @aureooms/js-radixsort --save

npm

npm install @aureooms/js-radixsort --save

Require

jspm

let radixsort = require( "github:aureooms/js-radixsort" ) ;
// or
import radixsort from '@aureooms/js-radixsort' ;

duo

let radixsort = require( "aureooms/js-radixsort" ) ;

component, ender, spm, npm

let radixsort = require( "@aureooms/js-radixsort" ) ;

bower

The script tag exposes the global variable radixsort.

<script src="bower_components/@aureooms/js-radixsort/js/dist/radixsort.min.js"></script>

Alternatively, you can use any tool mentioned here.

jam

require( [ "@aureooms/js-radixsort" ] , function ( radixsort ) { ... } ) ;