1.1.2 • Published 10 months ago

nano-sort v1.1.2

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

npm version

Nano-Sort

A package containing the most popular sorting algorithms in JavaScript.

Prerequisites

This project supports all versions of Node.js Node and NPM are really easy to install. To make sure you have them available on your machine, try running the following command.

$ npm i nano-sort

Table of contents

Getting Started

This package helps you write as little code as possible in your project. you can use multiple perfect sorting algorithms by downloading a single package

Installation

$ npm i nano-sort
const Sort = require("nano-sort");
const nanoSort = new Sort();
console.log(nanoSort.bubbleSort([4,5,7,9,3]));