npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@rudenko/stalin-sort

v0.8.1

Published

stalinSort - a repressive sorting algo

Downloads

10

Readme

stalinSort

Inspired by a post on mastodon

Developed for educational purposes within kottans

Installation

  • npm: npm install --save @rudenko/stalin-sort
  • yarn: yarn add @rudenko/stalin-sort

Usage

const stalinSort = require('@rudenko/stalin-sort')

const numbers = [5, 2, 18, 1];
const strings = ['klm', 'nop', 'def', 'abc']
let result

try {
  result = stalinSort(numbers) // [5, 18]
} catch (e) {
  // handle exception TypeError('Argument must be an array')
}

try {
  result = stalinSort(strings, (a, b) => a > b) // ['klm', 'def', 'abc']
} catch (e) {
  // handle exceptions:
  // - TypeError('Argument must be an array')
  // - TypeError('Comparator must be a function')
}

See example.js for more examples.

Educational

Advance from version to version to track the development process.

See also CHANGELOG.md

| Version | Milestone | Comment | Diff | ------- | ------------------------------- | ---------------- | --- | 0.0.1 | Initialize project | | | 0.0.2 | Add code stub and basic test | Tests fail | v0.0.1...v0.0.2 | 0.0.3 | Add positive scenarios test set | Tests still fail | v0.0.2...v0.0.3 | 0.1.0 | Add for loop implementation | Tests succeed | v0.0.3...v0.1.0 | 0.1.1 | Change implementation using for...in loop | Tests succeed | v0.1.0...v0.1.1 | 0.1.2 | Change implementation using for...of loop | Tests succeed | v0.1.1...v0.1.2 | 0.2.0 | Change implementation using Array.forEach | Tests succeed | v0.1.2...v0.2.0 | 0.3.0 | Change implementation using Array.reduce | Tests succeed | v0.2.0...v0.3.0 | 0.4.0 | Change implementation using Array.filter | Tests succeed | v0.3.0...v0.4.0 | 0.4.1 | Change Array.filter condition (skip boolean literals) | Tests succeed | v0.4.0...v0.4.1 | 0.4.2 | Change Array.filter condition (distill logic) | Tests succeed | v0.4.1...v0.4.2 | 0.5.0 | Add error handling on wrong argument type | Tests succeed | v0.4.2...v0.5.0 | 0.6.0 | Add compare argument and pre-defined comparators | Tests succeed | v0.5.0...v0.6.0 | 0.7.0 | Add usage and example.js | Tests succeed | v0.6.0...v0.7.0 | 0.8.0 | Fix stalinSort implementation logical mistake | Tests succeed | v0.7.0...v0.8.0 | 0.8.1 | Add tests for comparison functions from utils | Tests succeed | v0.8.0...v0.8.1

Similar projects

Misc

Time spent: apx 2hrs