@stdlib/assert-is-read-write-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 +44 -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
  # isReadWritePropertyIn
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 readable and writable.
26
26
 
@@ -156,6 +156,25 @@ bool = isReadWritePropertyIn( void 0, 'a' );
156
156
 
157
157
  <!-- /.examples -->
158
158
 
159
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
160
+
161
+ <section class="related">
162
+
163
+ * * *
164
+
165
+ ## See Also
166
+
167
+ - <span class="package-name">[`@stdlib/assert/is-read-only-property-in`][@stdlib/assert/is-read-only-property-in]</span><span class="delimiter">: </span><span class="description">test if an object's own or inherited property is read-only.</span>
168
+ - <span class="package-name">[`@stdlib/assert/is-read-write-property`][@stdlib/assert/is-read-write-property]</span><span class="delimiter">: </span><span class="description">test if an object's own property is readable and writable.</span>
169
+ - <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>
170
+ - <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>
171
+
172
+ </section>
173
+
174
+ <!-- /.related -->
175
+
176
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
177
+
159
178
 
160
179
  <section class="main-repo" >
161
180
 
@@ -180,7 +199,7 @@ See [LICENSE][stdlib-license].
180
199
 
181
200
  ## Copyright
182
201
 
183
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
202
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
184
203
 
185
204
  </section>
186
205
 
@@ -199,9 +218,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
199
218
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-read-write-property-in/main.svg
200
219
  [coverage-url]: https://codecov.io/github/stdlib-js/assert-is-read-write-property-in?branch=main
201
220
 
221
+ <!--
222
+
202
223
  [dependencies-image]: https://img.shields.io/david/stdlib-js/assert-is-read-write-property-in.svg
203
224
  [dependencies-url]: https://david-dm.org/stdlib-js/assert-is-read-write-property-in/main
204
225
 
226
+ -->
227
+
228
+ [umd]: https://github.com/umdjs/umd
229
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
230
+
231
+ [deno-url]: https://github.com/stdlib-js/assert-is-read-write-property-in/tree/deno
232
+ [umd-url]: https://github.com/stdlib-js/assert-is-read-write-property-in/tree/umd
233
+ [esm-url]: https://github.com/stdlib-js/assert-is-read-write-property-in/tree/esm
234
+
205
235
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
206
236
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
207
237
 
@@ -211,6 +241,18 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
211
241
 
212
242
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-read-write-property-in/main/LICENSE
213
243
 
244
+ <!-- <related-links> -->
245
+
246
+ [@stdlib/assert/is-read-only-property-in]: https://www.npmjs.com/package/@stdlib/assert-is-read-only-property-in
247
+
248
+ [@stdlib/assert/is-read-write-property]: https://www.npmjs.com/package/@stdlib/assert-is-read-write-property
249
+
250
+ [@stdlib/assert/is-readable-property-in]: https://www.npmjs.com/package/@stdlib/assert-is-readable-property-in
251
+
252
+ [@stdlib/assert/is-writable-property-in]: https://www.npmjs.com/package/@stdlib/assert-is-writable-property-in
253
+
254
+ <!-- </related-links> -->
255
+
214
256
  </section>
215
257
 
216
258
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/assert-is-read-write-property-in",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Test if an object's own and inherited property is readable and writable.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {