@stdlib/utils-nonindex-keys 0.0.6 → 0.0.7

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 +41 -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
  # Non-Index Keys
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
  > Return an array of an object's own enumerable property names which are not integer indices.
26
26
 
@@ -101,6 +101,24 @@ console.log( keys );
101
101
 
102
102
  <!-- /.examples -->
103
103
 
104
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
105
+
106
+ <section class="related">
107
+
108
+ * * *
109
+
110
+ ## See Also
111
+
112
+ - <span class="package-name">[`@stdlib/utils/entries`][@stdlib/utils/entries]</span><span class="delimiter">: </span><span class="description">return an array of an object's own enumerable property key-value pairs.</span>
113
+ - <span class="package-name">[`@stdlib/utils/keys`][@stdlib/utils/keys]</span><span class="delimiter">: </span><span class="description">return an array of an object's own enumerable property names.</span>
114
+ - <span class="package-name">[`@stdlib/utils/values`][@stdlib/utils/values]</span><span class="delimiter">: </span><span class="description">return an array of an object's own enumerable property values.</span>
115
+
116
+ </section>
117
+
118
+ <!-- /.related -->
119
+
120
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
121
+
104
122
 
105
123
  <section class="main-repo" >
106
124
 
@@ -125,7 +143,7 @@ See [LICENSE][stdlib-license].
125
143
 
126
144
  ## Copyright
127
145
 
128
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
146
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
129
147
 
130
148
  </section>
131
149
 
@@ -144,9 +162,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
144
162
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-nonindex-keys/main.svg
145
163
  [coverage-url]: https://codecov.io/github/stdlib-js/utils-nonindex-keys?branch=main
146
164
 
165
+ <!--
166
+
147
167
  [dependencies-image]: https://img.shields.io/david/stdlib-js/utils-nonindex-keys.svg
148
168
  [dependencies-url]: https://david-dm.org/stdlib-js/utils-nonindex-keys/main
149
169
 
170
+ -->
171
+
172
+ [umd]: https://github.com/umdjs/umd
173
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
174
+
175
+ [deno-url]: https://github.com/stdlib-js/utils-nonindex-keys/tree/deno
176
+ [umd-url]: https://github.com/stdlib-js/utils-nonindex-keys/tree/umd
177
+ [esm-url]: https://github.com/stdlib-js/utils-nonindex-keys/tree/esm
178
+
150
179
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
151
180
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
152
181
 
@@ -158,6 +187,16 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
158
187
 
159
188
  [ecma-262-for-in]: http://www.ecma-international.org/ecma-262/5.1/#sec-12.6.4
160
189
 
190
+ <!-- <related-links> -->
191
+
192
+ [@stdlib/utils/entries]: https://www.npmjs.com/package/@stdlib/utils-entries
193
+
194
+ [@stdlib/utils/keys]: https://www.npmjs.com/package/@stdlib/utils-keys
195
+
196
+ [@stdlib/utils/values]: https://www.npmjs.com/package/@stdlib/utils-values
197
+
198
+ <!-- </related-links> -->
199
+
161
200
  </section>
162
201
 
163
202
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/utils-nonindex-keys",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Return an array of an object's own enumerable property names which are not integer indices.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {