mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 02:00:12 +08:00
* Bump the npm group with 2 updates Bumps the npm group with 2 updates: [eslint](https://github.com/eslint/eslint) and [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import). Updates `eslint` from 8.45.0 to 8.46.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.45.0...v8.46.0) Updates `eslint-plugin-import` from 2.27.5 to 2.28.0 - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.27.5...v2.28.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm - dependency-name: eslint-plugin-import dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm ... Signed-off-by: dependabot[bot] <support@github.com> * Update checked-in dependencies --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
80 lines
2.7 KiB
Markdown
80 lines
2.7 KiB
Markdown
# object.groupby <sup>[![Version Badge][npm-version-svg]][package-url]</sup>
|
|
|
|
[![github actions][actions-image]][actions-url]
|
|
[![coverage][codecov-image]][codecov-url]
|
|
[![License][license-image]][license-url]
|
|
[![Downloads][downloads-image]][downloads-url]
|
|
|
|
[![npm badge][npm-badge-png]][package-url]
|
|
|
|
An ESnext spec-compliant `Object.groupBy` shim/polyfill/replacement that works as far down as ES3.
|
|
|
|
This package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the proposed [spec](https://tc39.github.io/proposal-array-grouping/).
|
|
|
|
## Getting started
|
|
|
|
```sh
|
|
npm install --save object.groupby
|
|
```
|
|
|
|
## Usage/Examples
|
|
|
|
```js
|
|
var groupBy = require('object.groupby');
|
|
var assert = require('assert');
|
|
|
|
var arr = [0, 1, 2, 3, 4, 5];
|
|
var parity = function (x) { return x % 2 === 0 ? 'even' : 'odd'; };
|
|
|
|
var results = groupBy(arr, function (x, i) {
|
|
assert.equal(x, arr[i]);
|
|
return parity(x);
|
|
});
|
|
|
|
assert.deepEqual(results, {
|
|
__proto__: null,
|
|
even: [0, 2, 4],
|
|
odd: [1, 3, 5],
|
|
});
|
|
```
|
|
|
|
```js
|
|
var groupBy = require('object.groupby');
|
|
var assert = require('assert');
|
|
/* when Object.groupBy is not present */
|
|
delete Object.groupBy;
|
|
var shimmed = groupBy.shim();
|
|
|
|
assert.equal(shimmed, groupBy.getPolyfill());
|
|
assert.deepEqual(Object.groupBy(arr, parity), groupBy(arr, parity));
|
|
```
|
|
|
|
```js
|
|
var groupBy = require('object.groupby');
|
|
var assert = require('assert');
|
|
/* when Array#group is present */
|
|
var shimmed = groupBy.shim();
|
|
|
|
assert.equal(shimmed, Object.groupBy);
|
|
assert.deepEqual(Object.groupBy(arr, parity), groupBy(arr, parity));
|
|
```
|
|
|
|
## Tests
|
|
Simply clone the repo, `npm install`, and run `npm test`
|
|
|
|
[package-url]: https://npmjs.org/package/object.groupby
|
|
[npm-version-svg]: https://versionbadg.es/es-shims/Object.groupBy.svg
|
|
[deps-svg]: https://david-dm.org/es-shims/Object.groupBy.svg
|
|
[deps-url]: https://david-dm.org/es-shims/Object.groupBy
|
|
[dev-deps-svg]: https://david-dm.org/es-shims/Object.groupBy/dev-status.svg
|
|
[dev-deps-url]: https://david-dm.org/es-shims/Object.groupBy#info=devDependencies
|
|
[npm-badge-png]: https://nodei.co/npm/object.groupby.png?downloads=true&stars=true
|
|
[license-image]: https://img.shields.io/npm/l/object.groupby.svg
|
|
[license-url]: LICENSE
|
|
[downloads-image]: https://img.shields.io/npm/dm/object.groupby.svg
|
|
[downloads-url]: https://npm-stat.com/charts.html?package=object.groupby
|
|
[codecov-image]: https://codecov.io/gh/es-shims/Object.groupBy/branch/main/graphs/badge.svg
|
|
[codecov-url]: https://app.codecov.io/gh/es-shims/Object.groupBy/
|
|
[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/Object.groupBy
|
|
[actions-url]: https://github.com/es-shims/Object.groupBy/actions
|