Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
alpha-order
Advanced tools
Sort JS objects and arrays by alpha order
The JavaScript specification makes no guarantees about the order of keys in
objects. However, V8 tends to sort them in the order in which they were added
to the object. This allows us to to get deterministic results from
JSON.stringify
by alpha sorting objects and arrays ahead of time. BE WARNED:
DO NOT DEPEND ON KEY ORDERING IN YOUR CODE.
Install the module with: npm install alpha-order
Simply require the module, then call the sort()
method. alpha-order does not
mutate the object passed in, and it always returns a new object to you.
const alpha = require('alpha-order');
const a = [3, 1, 2];
alpha.sort(a);
// => [1, 2, 3]
const obj = { b: 1, a: 1 };
alpha.sort(obj);
// => { a: 1, b: 2 }
// You can also sort nested objects
const obj2 = { b: { ib: 2, ia: 1 }, a: 1 };
alpha.sort(obj, true);
// => { a: 1, b: { ia: 1, ib: 2 }}
Sort an object or an array. alpha-order will only sort POJOs and arrays. It will not sort classes.
obj
- {Object | Array} the object or array to be sortedrecursive
- {Boolean} if true, will recursively sort nested objects
or arrays.Returns: {Object | Array} a newly sorted object or array
Ensure that all linting and codestyle tasks are passing. Add unit tests for any new or changed functionality.
To start contributing, install the git prepush hooks:
make githooks
Before committing, lint and test your code using the included Makefile:
make prepush
Copyright (c) 2018 Alex Liu
Licensed under the MIT license.
FAQs
Sort JS objects and arrays by alpha order
The npm package alpha-order receives a total of 3 weekly downloads. As such, alpha-order popularity was classified as not popular.
We found that alpha-order 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.