
Security News
Safari 18.4 Ships 3 New JavaScript Features from the TC39 Pipeline
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
array-of-arrays-sort-by-col
Advanced tools
Sort array of arrays by column, rippling the sorting outwards from that column
Sort array of arrays by column, rippling the sorting outwards from that column
This package is pure ESM. If you're not ready yet, install an older version of this program, 3.1.0 (npm i array-of-arrays-sort-by-col@3.1.0
).
npm i array-of-arrays-sort-by-col
import { strict as assert } from "assert";
import { sortByCol } from "array-of-arrays-sort-by-col";
// sort by second column, index number 1
assert.deepEqual(sortByCol([[1, 9, 4], [1], [1, 9, 3], [1, 9, 2]], 1), [
[1, 9, 2],
[1, 9, 3],
[1, 9, 4],
[1],
]);
Please visit codsen.com for a full description of the API.
To report bugs or request features or assistance, raise an issue on GitHub.
MIT License.
Copyright © 2010-2024 Roy Revelt and other contributors.
FAQs
Sort array of arrays by column, rippling the sorting outwards from that column
The npm package array-of-arrays-sort-by-col receives a total of 294 weekly downloads. As such, array-of-arrays-sort-by-col popularity was classified as not popular.
We found that array-of-arrays-sort-by-col demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
Research
Security News
The Socket Research Team investigates a malicious Python package that enables automated credit card fraud on WooCommerce stores by abusing real checkout and payment flows.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.