@stdlib/symbol-async-iterator 0.0.4 → 0.0.8
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 +36 -2
- package/package.json +1 -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
|
# Async Iterator Symbol
|
|
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
|
> Async iterator [symbol][mdn-symbol] which specifies the default async iterator for an object.
|
|
26
26
|
|
|
@@ -107,6 +107,21 @@ if ( AsyncIteratorSymbol === null ) {
|
|
|
107
107
|
|
|
108
108
|
<!-- /.references -->
|
|
109
109
|
|
|
110
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
111
|
+
|
|
112
|
+
<section class="related">
|
|
113
|
+
|
|
114
|
+
* * *
|
|
115
|
+
|
|
116
|
+
## See Also
|
|
117
|
+
|
|
118
|
+
- <span class="package-name">[`@stdlib/symbol/ctor`][@stdlib/symbol/ctor]</span><span class="delimiter">: </span><span class="description">symbols.</span>
|
|
119
|
+
- <span class="package-name">[`@stdlib/symbol/iterator`][@stdlib/symbol/iterator]</span><span class="delimiter">: </span><span class="description">symbol iterator.</span>
|
|
120
|
+
|
|
121
|
+
</section>
|
|
122
|
+
|
|
123
|
+
<!-- /.related -->
|
|
124
|
+
|
|
110
125
|
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
111
126
|
|
|
112
127
|
|
|
@@ -133,7 +148,7 @@ See [LICENSE][stdlib-license].
|
|
|
133
148
|
|
|
134
149
|
## Copyright
|
|
135
150
|
|
|
136
|
-
Copyright © 2016-
|
|
151
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
137
152
|
|
|
138
153
|
</section>
|
|
139
154
|
|
|
@@ -152,9 +167,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
152
167
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/symbol-async-iterator/main.svg
|
|
153
168
|
[coverage-url]: https://codecov.io/github/stdlib-js/symbol-async-iterator?branch=main
|
|
154
169
|
|
|
170
|
+
<!--
|
|
171
|
+
|
|
155
172
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/symbol-async-iterator.svg
|
|
156
173
|
[dependencies-url]: https://david-dm.org/stdlib-js/symbol-async-iterator/main
|
|
157
174
|
|
|
175
|
+
-->
|
|
176
|
+
|
|
177
|
+
[umd]: https://github.com/umdjs/umd
|
|
178
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
179
|
+
|
|
180
|
+
[deno-url]: https://github.com/stdlib-js/symbol-async-iterator/tree/deno
|
|
181
|
+
[umd-url]: https://github.com/stdlib-js/symbol-async-iterator/tree/umd
|
|
182
|
+
[esm-url]: https://github.com/stdlib-js/symbol-async-iterator/tree/esm
|
|
183
|
+
|
|
158
184
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
159
185
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
160
186
|
|
|
@@ -166,6 +192,14 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
166
192
|
|
|
167
193
|
[mdn-symbol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol
|
|
168
194
|
|
|
195
|
+
<!-- <related-links> -->
|
|
196
|
+
|
|
197
|
+
[@stdlib/symbol/ctor]: https://www.npmjs.com/package/@stdlib/symbol-ctor
|
|
198
|
+
|
|
199
|
+
[@stdlib/symbol/iterator]: https://www.npmjs.com/package/@stdlib/symbol-iterator
|
|
200
|
+
|
|
201
|
+
<!-- </related-links> -->
|
|
202
|
+
|
|
169
203
|
</section>
|
|
170
204
|
|
|
171
205
|
<!-- /.links -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/symbol-async-iterator",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Async iterator symbol.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
],
|
|
16
16
|
"main": "./lib",
|
|
17
17
|
"directories": {
|
|
18
|
-
"benchmark": "./benchmark",
|
|
19
18
|
"doc": "./docs",
|
|
20
19
|
"example": "./examples",
|
|
21
20
|
"lib": "./lib",
|