JSPM

order-sorter

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q27901F
  • License MIT

A simple utility to sort data in ascending or descending order.

Package Exports

  • order-sorter
  • order-sorter/lib/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (order-sorter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

order-sorter

The order-sorter module provides a simple and efficient way to sort arrays of numerical data in ascending or descending order. It is designed to handle common sorting tasks with an easy-to-use interface.

Installation

Install order-sorter using npm:

npm install order-sorter

Usage

To use order-sorter, import the module and call the sortData function with your array and the desired sort order ('asc' or 'desc'):

const sortData = require('order-sorter');

const data = [10, 2, 33, 4, 5];
const sortedAsc = sortData(data, 'asc');
console.log('Sorted Ascending:', sortedAsc);

const sortedDesc = sortData(data, 'desc');
console.log('Sorted Descending:', sortedDesc);

Features

  • Simple API: Just two parameters to sort your data.
  • Flexible: Supports both ascending and descending orders.

Contributing

If you'd like to contribute to order-sorter, please fork the repository and submit a pull request.

Issues

If you encounter any issues while using order-sorter, please submit them to the repository's issue tracker.

License

order-sorter is available under the MIT license. Full license text is available in the LICENSE file.