1.0.1 • Published 5 years ago

@codewell/sort-object-array v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

@codewell/sort-object-array

Sort an array with objects in JavaScript based on keys

Installation

npm install @codewell/sort-object-array

Basic usage

import sortObjectArray from '@codewell/sort-object-array';

const arr = [{age: 1}, {age: 3}, {age: 2}];

const sortedArr = sortObjectArray(arr, 'age');
const sortedArr2 = sortObjectArray(arr, 'age', true); // Reverse order