Socket
Socket
Sign inDemoInstall

semsort

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    semsort

Semantic versioning sort algroithm


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

node yarn

semsort

Semantic versioning compliant sorting algorithm

  • 🔥 Performant
  • 🎉 Zero dependencies
  • 👌🏼 First class typescript support
  • 🙌🏼 Handles pre-release candidates syntax - i.e. v.1.2.3-pre1-beta.01
  • 🧠 Format agnostic - handles bespoke numerical formats and delimiters

Table of Contents

  • Installation
  • Usage
  • Api
  • Examples
  • Author

Installation

$ yarn add semsort
$ npm install semsort

Usage

import * as semsort from "semsort";
...

API

asc(input: string[]): string[]

sorts an input array or sem var formatted strings by ascending version

desc(input: string[]): string[]

sorts an input array or sem var formatted strings by descending version

Examples

import * as semsort from "../src";

(() => {

    const semvarArrayUnsorted = [
        "v1.2.3-pre1-alpha",
        "v5.5.501",
        "v1.2.3-pre2-alpha",
        "v1.2.3-pre2-alpha2",
        "v5.2.1",
        "v5.5.22",
        "v8.0.0",
        "v0.21.1",
        "v6.22.9"
    ]

    console.log("original unsorted:");
    console.dir(semvarArrayUnsorted);

    //   [ 'v1.2.3-pre1-alpha',
    //     'v5.5.501',
    //     'v1.2.3-pre2-alpha',
    //     'v1.2.3-pre2-alpha2',
    //     'v5.2.1',
    //     'v5.5.22',
    //     'v8.0.0',
    //     'v0.21.1',
    //     'v6.22.9' ]

    const resultAscending = semsort.asc(semvarArrayUnsorted);

    console.log("ascending result:");
    console.dir(resultAscending);

    //   [ 'v0.21.1',
    //     'v1.2.3-pre1-alpha',
    //     'v1.2.3-pre2-alpha',
    //     'v1.2.3-pre2-alpha2',
    //     'v5.2.1',
    //     'v5.5.22',
    //     'v5.5.501',
    //     'v6.22.9',
    //     'v8.0.0' ]


    const resultDescending = semsort.desc(semvarArrayUnsorted);

    console.log("descending result:");
    console.dir(resultDescending);

    //   [ 'v8.0.0',
    //     'v6.22.9',
    //     'v5.5.501',
    //     'v5.5.22',
    //     'v5.2.1',
    //     'v1.2.3-pre2-alpha',
    //     'v1.2.3-pre2-alpha2',
    //     'v1.2.3-pre1-alpha',
    //     'v0.21.1' ]

})();

Author

Jarvis Prestidge - jarvisprestidge@gmail.com

Keywords

FAQs

Last updated on 09 Sep 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc