1.0.2 • Published 3 years ago

sort-by-field v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

A simple library for sorting an array of objects by a specified field.

Installation

npm install sort-by-field

Import

To import the main function:

import sortByField from "sort-by-field";

Other miscellaneous function: import { quicksort } from "sort-by-field";

Calling the function

To call sortByField, 2 arguments are required, the array to be sorted and the field to be sorted by.

const sequence = [
    {
        value: 5
    },
    {
        value: 2
    },
    {
        value: 6
    },
    {
        value: 7
    }
];

sequence = sortByField(sequence, "value");
console.log(sequence);
1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago