@stdlib/assert-is-read-write-property-in 0.0.3 → 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 +52 -3
- package/package.json +2 -2
- package/CHANGELOG.md +0 -5
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
|
# 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
|
|
|
@@ -167,6 +186,10 @@ This package is part of [stdlib][stdlib], a standard library for JavaScript and
|
|
|
167
186
|
|
|
168
187
|
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].
|
|
169
188
|
|
|
189
|
+
#### Community
|
|
190
|
+
|
|
191
|
+
[![Chat][chat-image]][chat-url]
|
|
192
|
+
|
|
170
193
|
---
|
|
171
194
|
|
|
172
195
|
## License
|
|
@@ -176,7 +199,7 @@ See [LICENSE][stdlib-license].
|
|
|
176
199
|
|
|
177
200
|
## Copyright
|
|
178
201
|
|
|
179
|
-
Copyright © 2016-
|
|
202
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
180
203
|
|
|
181
204
|
</section>
|
|
182
205
|
|
|
@@ -195,15 +218,41 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
195
218
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/assert-is-read-write-property-in/main.svg
|
|
196
219
|
[coverage-url]: https://codecov.io/github/stdlib-js/assert-is-read-write-property-in?branch=main
|
|
197
220
|
|
|
198
|
-
|
|
221
|
+
<!--
|
|
222
|
+
|
|
223
|
+
[dependencies-image]: https://img.shields.io/david/stdlib-js/assert-is-read-write-property-in.svg
|
|
199
224
|
[dependencies-url]: https://david-dm.org/stdlib-js/assert-is-read-write-property-in/main
|
|
200
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
|
+
|
|
235
|
+
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
236
|
+
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
237
|
+
|
|
201
238
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
202
239
|
|
|
203
240
|
[stdlib-authors]: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
204
241
|
|
|
205
242
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/assert-is-read-write-property-in/main/LICENSE
|
|
206
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
|
+
|
|
207
256
|
</section>
|
|
208
257
|
|
|
209
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.
|
|
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": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"examples": "make examples",
|
|
29
29
|
"benchmark": "make benchmark"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://
|
|
31
|
+
"homepage": "https://stdlib.io",
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
34
|
"url": "git://github.com/stdlib-js/assert-is-read-write-property-in.git"
|