sort-keys

WebJar for sort-keys

Лицензия

Лицензия

MIT
Категории

Категории

KeY Данные Data Formats Formal Verification
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

sort-keys
Последняя версия

Последняя версия

2.0.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

sort-keys
WebJar for sort-keys
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/sindresorhus/sort-keys

Скачать sort-keys

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/sort-keys/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>sort-keys</artifactId>
    <version>2.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/sort-keys/
implementation 'org.webjars.npm:sort-keys:2.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/sort-keys/
implementation ("org.webjars.npm:sort-keys:2.0.0")
'org.webjars.npm:sort-keys:jar:2.0.0'
<dependency org="org.webjars.npm" name="sort-keys" rev="2.0.0">
  <artifact name="sort-keys" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='sort-keys', version='2.0.0')
)
libraryDependencies += "org.webjars.npm" % "sort-keys" % "2.0.0"
[org.webjars.npm/sort-keys "2.0.0"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : is-plain-obj jar [1.0.0,2)

Модули Проекта

Данный проект не имеет модулей.

sort-keys Build Status

Sort the keys of an object

Useful to get a deterministically ordered object, as the order of keys can vary between engines.

Install

$ npm install sort-keys

Usage

const sortKeys = require('sort-keys');

sortKeys({c: 0, a: 0, b: 0});
//=> {a: 0, b: 0, c: 0}

sortKeys({b: {b: 0, a: 0}, a: 0}, {deep: true});
//=> {a: 0, b: {a: 0, b: 0}}

sortKeys({b: [{b: 0, a: 0}], a: 0}, {deep: true});
//=> {a: 0, b: [{a: 0, b: 0}]}

sortKeys({c: 0, a: 0, b: 0}, {
	compare: (a, b) => -a.localeCompare(b)
});
//=> {c: 0, b: 0, a: 0}

sortKeys([{b: 0, a:2}], {deep: true});
//=> [{a: 2, b: 0}]

API

sortKeys(object, options?)

Returns a new object with sorted keys.

object

Type: object | Array

options

Type: object

deep

Type: boolean
Default: false

Recursively sort keys, including keys of objects inside arrays.

compare

Type: Function

Compare function.


Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.

Версии библиотеки

Версия
2.0.0
1.1.2
1.0.0