@stdlib/utils-nonindex-keys 0.0.3 → 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.
- package/NOTICE +1 -1
- package/README.md +49 -3
- package/package.json +2 -2
- package/CHANGELOG.md +0 -5
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
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
|
|
|
@@ -112,6 +130,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
|
|
|
112
130
|
|
|
113
131
|
For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib].
|
|
114
132
|
|
|
133
|
+
#### Community
|
|
134
|
+
|
|
135
|
+
[![Chat][chat-image]][chat-url]
|
|
136
|
+
|
|
115
137
|
---
|
|
116
138
|
|
|
117
139
|
## License
|
|
@@ -121,7 +143,7 @@ See [LICENSE][stdlib-license].
|
|
|
121
143
|
|
|
122
144
|
## Copyright
|
|
123
145
|
|
|
124
|
-
Copyright © 2016-
|
|
146
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
125
147
|
|
|
126
148
|
</section>
|
|
127
149
|
|
|
@@ -140,9 +162,23 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
140
162
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-nonindex-keys/main.svg
|
|
141
163
|
[coverage-url]: https://codecov.io/github/stdlib-js/utils-nonindex-keys?branch=main
|
|
142
164
|
|
|
143
|
-
|
|
165
|
+
<!--
|
|
166
|
+
|
|
167
|
+
[dependencies-image]: https://img.shields.io/david/stdlib-js/utils-nonindex-keys.svg
|
|
144
168
|
[dependencies-url]: https://david-dm.org/stdlib-js/utils-nonindex-keys/main
|
|
145
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
|
+
|
|
179
|
+
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
180
|
+
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
181
|
+
|
|
146
182
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
147
183
|
|
|
148
184
|
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
@@ -151,6 +187,16 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
151
187
|
|
|
152
188
|
[ecma-262-for-in]: http://www.ecma-international.org/ecma-262/5.1/#sec-12.6.4
|
|
153
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
|
+
|
|
154
200
|
</section>
|
|
155
201
|
|
|
156
202
|
<!-- /.links -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/utils-nonindex-keys",
|
|
3
|
-
"version": "0.0.
|
|
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": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"examples": "make examples",
|
|
29
29
|
"benchmark": "make benchmark"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://
|
|
31
|
+
"homepage": "https://stdlib.io",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
34
|
"url": "git://github.com/stdlib-js/utils-nonindex-keys.git"
|