@stdlib/utils-property-descriptors-in 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.
- package/NOTICE +1 -1
- package/README.md +45 -2
- package/package.json +1 -1
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
|
# propertyDescriptorsIn
|
|
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 object's own and inherited [property descriptors][@stdlib/utils/property-descriptors].
|
|
26
26
|
|
|
@@ -107,6 +107,26 @@ console.log( desc );
|
|
|
107
107
|
|
|
108
108
|
<!-- /.examples -->
|
|
109
109
|
|
|
110
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
111
|
+
|
|
112
|
+
<section class="related">
|
|
113
|
+
|
|
114
|
+
* * *
|
|
115
|
+
|
|
116
|
+
## See Also
|
|
117
|
+
|
|
118
|
+
- <span class="package-name">[`@stdlib/utils/define-properties`][@stdlib/utils/define-properties]</span><span class="delimiter">: </span><span class="description">define (and/or modify) object properties.</span>
|
|
119
|
+
- <span class="package-name">[`@stdlib/utils/property-descriptor-in`][@stdlib/utils/property-descriptor-in]</span><span class="delimiter">: </span><span class="description">return a property descriptor for an object's own or inherited property.</span>
|
|
120
|
+
- <span class="package-name">[`@stdlib/utils/property-descriptors`][@stdlib/utils/property-descriptors]</span><span class="delimiter">: </span><span class="description">return an object's own property descriptors.</span>
|
|
121
|
+
- <span class="package-name">[`@stdlib/utils/property-names-in`][@stdlib/utils/property-names-in]</span><span class="delimiter">: </span><span class="description">return an array of an object's own and inherited enumerable and non-enumerable property names.</span>
|
|
122
|
+
- <span class="package-name">[`@stdlib/utils/property-symbols-in`][@stdlib/utils/property-symbols-in]</span><span class="delimiter">: </span><span class="description">return an array of an object's own and inherited symbol properties.</span>
|
|
123
|
+
|
|
124
|
+
</section>
|
|
125
|
+
|
|
126
|
+
<!-- /.related -->
|
|
127
|
+
|
|
128
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
129
|
+
|
|
110
130
|
|
|
111
131
|
<section class="main-repo" >
|
|
112
132
|
|
|
@@ -131,7 +151,7 @@ See [LICENSE][stdlib-license].
|
|
|
131
151
|
|
|
132
152
|
## Copyright
|
|
133
153
|
|
|
134
|
-
Copyright © 2016-
|
|
154
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
135
155
|
|
|
136
156
|
</section>
|
|
137
157
|
|
|
@@ -150,9 +170,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
150
170
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-property-descriptors-in/main.svg
|
|
151
171
|
[coverage-url]: https://codecov.io/github/stdlib-js/utils-property-descriptors-in?branch=main
|
|
152
172
|
|
|
173
|
+
<!--
|
|
174
|
+
|
|
153
175
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/utils-property-descriptors-in.svg
|
|
154
176
|
[dependencies-url]: https://david-dm.org/stdlib-js/utils-property-descriptors-in/main
|
|
155
177
|
|
|
178
|
+
-->
|
|
179
|
+
|
|
180
|
+
[umd]: https://github.com/umdjs/umd
|
|
181
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
182
|
+
|
|
183
|
+
[deno-url]: https://github.com/stdlib-js/utils-property-descriptors-in/tree/deno
|
|
184
|
+
[umd-url]: https://github.com/stdlib-js/utils-property-descriptors-in/tree/umd
|
|
185
|
+
[esm-url]: https://github.com/stdlib-js/utils-property-descriptors-in/tree/esm
|
|
186
|
+
|
|
156
187
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
157
188
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
158
189
|
|
|
@@ -162,8 +193,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
162
193
|
|
|
163
194
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/utils-property-descriptors-in/main/LICENSE
|
|
164
195
|
|
|
196
|
+
<!-- <related-links> -->
|
|
197
|
+
|
|
198
|
+
[@stdlib/utils/define-properties]: https://www.npmjs.com/package/@stdlib/utils-define-properties
|
|
199
|
+
|
|
200
|
+
[@stdlib/utils/property-descriptor-in]: https://www.npmjs.com/package/@stdlib/utils-property-descriptor-in
|
|
201
|
+
|
|
165
202
|
[@stdlib/utils/property-descriptors]: https://www.npmjs.com/package/@stdlib/utils-property-descriptors
|
|
166
203
|
|
|
204
|
+
[@stdlib/utils/property-names-in]: https://www.npmjs.com/package/@stdlib/utils-property-names-in
|
|
205
|
+
|
|
206
|
+
[@stdlib/utils/property-symbols-in]: https://www.npmjs.com/package/@stdlib/utils-property-symbols-in
|
|
207
|
+
|
|
208
|
+
<!-- </related-links> -->
|
|
209
|
+
|
|
167
210
|
</section>
|
|
168
211
|
|
|
169
212
|
<!-- /.links -->
|