@stdlib/assert-deep-has-own-property 0.0.2 → 0.0.6

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 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
  # deepHasOwnProp
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 whether an object contains a nested key path.
26
26
 
@@ -258,6 +258,26 @@ bool = has( { 'a': [ { 'b': { 'c': 'd' } } ] } );
258
258
 
259
259
  <!-- /.examples -->
260
260
 
261
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
262
+
263
+ <section class="related">
264
+
265
+ * * *
266
+
267
+ ## See Also
268
+
269
+ - <span class="package-name">[`@stdlib/assert/deep-has-property`][@stdlib/assert/deep-has-property]</span><span class="delimiter">: </span><span class="description">test whether an object contains a nested key path, either own or inherited.</span>
270
+ - <span class="package-name">[`@stdlib/assert/has-own-property`][@stdlib/assert/has-own-property]</span><span class="delimiter">: </span><span class="description">test if an object has a specified property.</span>
271
+ - <span class="package-name">[`@stdlib/utils/deep-get`][@stdlib/utils/deep-get]</span><span class="delimiter">: </span><span class="description">get a nested property value.</span>
272
+ - <span class="package-name">[`@stdlib/utils/deep-pluck`][@stdlib/utils/deep-pluck]</span><span class="delimiter">: </span><span class="description">extract a nested property value from each element of an object array.</span>
273
+ - <span class="package-name">[`@stdlib/utils/deep-set`][@stdlib/utils/deep-set]</span><span class="delimiter">: </span><span class="description">set a nested property value.</span>
274
+
275
+ </section>
276
+
277
+ <!-- /.related -->
278
+
279
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
280
+
261
281
 
262
282
  <section class="main-repo" >
263
283
 
@@ -269,6 +289,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
269
289
 
270
290
  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].
271
291
 
292
+ #### Community
293
+
294
+ [![Chat][chat-image]][chat-url]
295
+
272
296
  ---
273
297
 
274
298
  ## License
@@ -278,7 +302,7 @@ See [LICENSE][stdlib-license].
278
302
 
279
303
  ## Copyright
280
304
 
281
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
305
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
282
306
 
283
307
  </section>
284
308
 
@@ -297,15 +321,43 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
297
321
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-deep-has-own-property/main.svg
298
322
  [coverage-url]: https://codecov.io/github/stdlib-js/assert-deep-has-own-property?branch=main
299
323
 
300
- [dependencies-image]: https://img.shields.io/david/stdlib-js/assert-deep-has-own-property
324
+ <!--
325
+
326
+ [dependencies-image]: https://img.shields.io/david/stdlib-js/assert-deep-has-own-property.svg
301
327
  [dependencies-url]: https://david-dm.org/stdlib-js/assert-deep-has-own-property/main
302
328
 
329
+ -->
330
+
331
+ [umd]: https://github.com/umdjs/umd
332
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
333
+
334
+ [deno-url]: https://github.com/stdlib-js/assert-deep-has-own-property/tree/deno
335
+ [umd-url]: https://github.com/stdlib-js/assert-deep-has-own-property/tree/umd
336
+ [esm-url]: https://github.com/stdlib-js/assert-deep-has-own-property/tree/esm
337
+
338
+ [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
339
+ [chat-url]: https://gitter.im/stdlib-js/stdlib/
340
+
303
341
  [stdlib]: https://github.com/stdlib-js/stdlib
304
342
 
305
343
  [stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
306
344
 
307
345
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-deep-has-own-property/main/LICENSE
308
346
 
347
+ <!-- <related-links> -->
348
+
349
+ [@stdlib/assert/deep-has-property]: https://www.npmjs.com/package/@stdlib/assert-deep-has-property
350
+
351
+ [@stdlib/assert/has-own-property]: https://www.npmjs.com/package/@stdlib/assert-has-own-property
352
+
353
+ [@stdlib/utils/deep-get]: https://www.npmjs.com/package/@stdlib/utils-deep-get
354
+
355
+ [@stdlib/utils/deep-pluck]: https://www.npmjs.com/package/@stdlib/utils-deep-pluck
356
+
357
+ [@stdlib/utils/deep-set]: https://www.npmjs.com/package/@stdlib/utils-deep-set
358
+
359
+ <!-- </related-links> -->
360
+
309
361
  </section>
310
362
 
311
363
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/assert-deep-has-own-property",
3
- "version": "0.0.2",
3
+ "version": "0.0.6",
4
4
  "description": "Test whether an object contains a nested key path.",
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://github.com/stdlib-js/stdlib",
31
+ "homepage": "https://stdlib.io",
32
32
  "repository": {
33
33
  "type": "git",
34
34
  "url": "git://github.com/stdlib-js/assert-deep-has-own-property.git"
package/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- # CHANGELOG
2
-
3
- > Package changelog.
4
-
5
- See [GitHub Releases](https://github.com/stdlib-js/assert-deep-has-own-property/releases) for the changelog.