@stdlib/assert-is-nonenumerable-property-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.
Files changed (3) hide show
  1. package/NOTICE +1 -1
  2. package/README.md +50 -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
  # isNonEnumerablePropertyIn
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
  > Test if an object's own or inherited property is non-enumerable.
26
26
 
@@ -165,6 +165,27 @@ bool = isNonEnumerablePropertyIn( void 0, 'a' );
165
165
 
166
166
  <!-- /.examples -->
167
167
 
168
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
169
+
170
+ <section class="related">
171
+
172
+ * * *
173
+
174
+ ## See Also
175
+
176
+ - <span class="package-name">[`@stdlib/assert/is-configurable-property-in`][@stdlib/assert/is-configurable-property-in]</span><span class="delimiter">: </span><span class="description">test if an object's own or inherited property is configurable.</span>
177
+ - <span class="package-name">[`@stdlib/assert/is-enumerable-property-in`][@stdlib/assert/is-enumerable-property-in]</span><span class="delimiter">: </span><span class="description">test if an object's own or inherited property is enumerable.</span>
178
+ - <span class="package-name">[`@stdlib/assert/is-nonconfigurable-property-in`][@stdlib/assert/is-nonconfigurable-property-in]</span><span class="delimiter">: </span><span class="description">test if an object's own or inherited property is non-configurable.</span>
179
+ - <span class="package-name">[`@stdlib/assert/is-nonenumerable-property`][@stdlib/assert/is-nonenumerable-property]</span><span class="delimiter">: </span><span class="description">test if an object's own property is non-enumerable.</span>
180
+ - <span class="package-name">[`@stdlib/assert/is-readable-property-in`][@stdlib/assert/is-readable-property-in]</span><span class="delimiter">: </span><span class="description">test if an object's own or inherited property is readable.</span>
181
+ - <span class="package-name">[`@stdlib/assert/is-writable-property-in`][@stdlib/assert/is-writable-property-in]</span><span class="delimiter">: </span><span class="description">test if an object's own or inherited property is writable.</span>
182
+
183
+ </section>
184
+
185
+ <!-- /.related -->
186
+
187
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
188
+
168
189
 
169
190
  <section class="main-repo" >
170
191
 
@@ -189,7 +210,7 @@ See [LICENSE][stdlib-license].
189
210
 
190
211
  ## Copyright
191
212
 
192
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
213
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
193
214
 
194
215
  </section>
195
216
 
@@ -208,9 +229,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
208
229
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-nonenumerable-property-in/main.svg
209
230
  [coverage-url]: https://codecov.io/github/stdlib-js/assert-is-nonenumerable-property-in?branch=main
210
231
 
232
+ <!--
233
+
211
234
  [dependencies-image]: https://img.shields.io/david/stdlib-js/assert-is-nonenumerable-property-in.svg
212
235
  [dependencies-url]: https://david-dm.org/stdlib-js/assert-is-nonenumerable-property-in/main
213
236
 
237
+ -->
238
+
239
+ [umd]: https://github.com/umdjs/umd
240
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
241
+
242
+ [deno-url]: https://github.com/stdlib-js/assert-is-nonenumerable-property-in/tree/deno
243
+ [umd-url]: https://github.com/stdlib-js/assert-is-nonenumerable-property-in/tree/umd
244
+ [esm-url]: https://github.com/stdlib-js/assert-is-nonenumerable-property-in/tree/esm
245
+
214
246
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
215
247
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
216
248
 
@@ -220,6 +252,22 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
220
252
 
221
253
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-nonenumerable-property-in/main/LICENSE
222
254
 
255
+ <!-- <related-links> -->
256
+
257
+ [@stdlib/assert/is-configurable-property-in]: https://www.npmjs.com/package/@stdlib/assert-is-configurable-property-in
258
+
259
+ [@stdlib/assert/is-enumerable-property-in]: https://www.npmjs.com/package/@stdlib/assert-is-enumerable-property-in
260
+
261
+ [@stdlib/assert/is-nonconfigurable-property-in]: https://www.npmjs.com/package/@stdlib/assert-is-nonconfigurable-property-in
262
+
263
+ [@stdlib/assert/is-nonenumerable-property]: https://www.npmjs.com/package/@stdlib/assert-is-nonenumerable-property
264
+
265
+ [@stdlib/assert/is-readable-property-in]: https://www.npmjs.com/package/@stdlib/assert-is-readable-property-in
266
+
267
+ [@stdlib/assert/is-writable-property-in]: https://www.npmjs.com/package/@stdlib/assert-is-writable-property-in
268
+
269
+ <!-- </related-links> -->
270
+
223
271
  </section>
224
272
 
225
273
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/assert-is-nonenumerable-property-in",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Test if an object's own or inherited property is non-enumerable.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {