Skip to content

fredrikkadolfsson/true-sort

Repository files navigation

true-sort   npm

Truly sort anything, and with zero dependencies 🚀

Installing

Via npm:

$ npm install [--save-dev] true-sort

Via yarn:

$ yarn add [--dev] true-sort

Usage

import { trueSort } from "true-sort";
// or
import trueSort from "true-sort";

const unsortedData = ...;
const options = { preferedSortKeys: "id" };
const sortedData = trueSort(unsortedData, options);

CLI

true-sort can be used on JSON files trough the CLI.

$ node node_modules/true-sort/dist/cli.js path/to/json [options]

Options

Option Type Description
preferedSortKeys string | string[] One or prioritized list of keys to sort object keys upon.

About

Truly sort anything, and with zero dependencies 🚀

Topics

Resources

License

Stars

Watchers

Forks