@stdlib/utils-group 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/NOTICE +1 -1
  2. package/README.md +39 -2
  3. package/package.json +1 -1
package/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2021 The Stdlib Authors.
1
+ Copyright (c) 2016-2022 The Stdlib Authors.
package/README.md CHANGED
@@ -20,7 +20,7 @@ limitations under the License.
20
20
 
21
21
  # group
22
22
 
23
- [![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
23
+ [![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
24
24
 
25
25
  > Group values as arrays associated with distinct keys.
26
26
 
@@ -174,6 +174,22 @@ console.log( out );
174
174
 
175
175
  <!-- /.references -->
176
176
 
177
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
178
+
179
+ <section class="related">
180
+
181
+ * * *
182
+
183
+ ## See Also
184
+
185
+ - <span class="package-name">[`@stdlib/utils/bifurcate`][@stdlib/utils/bifurcate]</span><span class="delimiter">: </span><span class="description">split values into two groups.</span>
186
+ - <span class="package-name">[`@stdlib/utils/count-by`][@stdlib/utils/count-by]</span><span class="delimiter">: </span><span class="description">group values according to an indicator function and return group counts.</span>
187
+ - <span class="package-name">[`@stdlib/utils/group-by`][@stdlib/utils/group-by]</span><span class="delimiter">: </span><span class="description">group values according to an indicator function.</span>
188
+
189
+ </section>
190
+
191
+ <!-- /.related -->
192
+
177
193
  <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
178
194
 
179
195
 
@@ -200,7 +216,7 @@ See [LICENSE][stdlib-license].
200
216
 
201
217
  ## Copyright
202
218
 
203
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
219
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
204
220
 
205
221
  </section>
206
222
 
@@ -219,9 +235,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
219
235
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-group/main.svg
220
236
  [coverage-url]: https://codecov.io/github/stdlib-js/utils-group?branch=main
221
237
 
238
+ <!--
239
+
222
240
  [dependencies-image]: https://img.shields.io/david/stdlib-js/utils-group.svg
223
241
  [dependencies-url]: https://david-dm.org/stdlib-js/utils-group/main
224
242
 
243
+ -->
244
+
245
+ [umd]: https://github.com/umdjs/umd
246
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
247
+
248
+ [deno-url]: https://github.com/stdlib-js/utils-group/tree/deno
249
+ [umd-url]: https://github.com/stdlib-js/utils-group/tree/umd
250
+ [esm-url]: https://github.com/stdlib-js/utils-group/tree/esm
251
+
225
252
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
226
253
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
227
254
 
@@ -237,6 +264,16 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
237
264
 
238
265
  [mdn-object]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
239
266
 
267
+ <!-- <related-links> -->
268
+
269
+ [@stdlib/utils/bifurcate]: https://www.npmjs.com/package/@stdlib/utils-bifurcate
270
+
271
+ [@stdlib/utils/count-by]: https://www.npmjs.com/package/@stdlib/utils-count-by
272
+
273
+ [@stdlib/utils/group-by]: https://www.npmjs.com/package/@stdlib/utils-group-by
274
+
275
+ <!-- </related-links> -->
276
+
240
277
  </section>
241
278
 
242
279
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/utils-group",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Group values as arrays associated with distinct keys.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {