@stdlib/assert-deep-has-own-property 0.0.5 → 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 +1 -1
- package/README.md +47 -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
|
# 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
|
|
|
@@ -282,7 +302,7 @@ See [LICENSE][stdlib-license].
|
|
|
282
302
|
|
|
283
303
|
## Copyright
|
|
284
304
|
|
|
285
|
-
Copyright © 2016-
|
|
305
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
286
306
|
|
|
287
307
|
</section>
|
|
288
308
|
|
|
@@ -301,9 +321,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
301
321
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-deep-has-own-property/main.svg
|
|
302
322
|
[coverage-url]: https://codecov.io/github/stdlib-js/assert-deep-has-own-property?branch=main
|
|
303
323
|
|
|
324
|
+
<!--
|
|
325
|
+
|
|
304
326
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/assert-deep-has-own-property.svg
|
|
305
327
|
[dependencies-url]: https://david-dm.org/stdlib-js/assert-deep-has-own-property/main
|
|
306
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
|
+
|
|
307
338
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
308
339
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
309
340
|
|
|
@@ -313,6 +344,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
313
344
|
|
|
314
345
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-deep-has-own-property/main/LICENSE
|
|
315
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
|
+
|
|
316
361
|
</section>
|
|
317
362
|
|
|
318
363
|
<!-- /.links -->
|