@stdlib/math-iter-special-sqrt1pm1 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.
Files changed (3) hide show
  1. package/NOTICE +1 -1
  2. package/README.md +34 -2
  3. package/package.json +2 -2
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
  # iterSqrt1pm1
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
  > Create an [iterator][mdn-iterator-protocol] which computes [`sqrt(1+x) - 1`][@stdlib/math/base/special/sqrt1pm1] for each iterated value.
26
26
 
@@ -137,6 +137,21 @@ while ( true ) {
137
137
 
138
138
  <!-- /.references -->
139
139
 
140
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
141
+
142
+ <section class="related">
143
+
144
+ * * *
145
+
146
+ ## See Also
147
+
148
+ - <span class="package-name">[`@stdlib/math/base/special/sqrt1pm1`][@stdlib/math/base/special/sqrt1pm1]</span><span class="delimiter">: </span><span class="description">compute sqrt(1 + x) - 1.</span>
149
+ - <span class="package-name">[`@stdlib/math/iter/special/sqrt`][@stdlib/math/iter/special/sqrt]</span><span class="delimiter">: </span><span class="description">create an iterator which computes the principal square root of each iterated value.</span>
150
+
151
+ </section>
152
+
153
+ <!-- /.related -->
154
+
140
155
  <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
141
156
 
142
157
 
@@ -163,7 +178,7 @@ See [LICENSE][stdlib-license].
163
178
 
164
179
  ## Copyright
165
180
 
166
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
181
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
167
182
 
168
183
  </section>
169
184
 
@@ -182,9 +197,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
182
197
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-iter-special-sqrt1pm1/main.svg
183
198
  [coverage-url]: https://codecov.io/github/stdlib-js/math-iter-special-sqrt1pm1?branch=main
184
199
 
200
+ <!--
201
+
185
202
  [dependencies-image]: https://img.shields.io/david/stdlib-js/math-iter-special-sqrt1pm1.svg
186
203
  [dependencies-url]: https://david-dm.org/stdlib-js/math-iter-special-sqrt1pm1/main
187
204
 
205
+ -->
206
+
207
+ [umd]: https://github.com/umdjs/umd
208
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
209
+
210
+ [deno-url]: https://github.com/stdlib-js/math-iter-special-sqrt1pm1/tree/deno
211
+ [umd-url]: https://github.com/stdlib-js/math-iter-special-sqrt1pm1/tree/umd
212
+ [esm-url]: https://github.com/stdlib-js/math-iter-special-sqrt1pm1/tree/esm
213
+
188
214
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
189
215
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
190
216
 
@@ -196,8 +222,14 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
196
222
 
197
223
  [mdn-iterator-protocol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol
198
224
 
225
+ <!-- <related-links> -->
226
+
199
227
  [@stdlib/math/base/special/sqrt1pm1]: https://www.npmjs.com/package/@stdlib/math-base-special-sqrt1pm1
200
228
 
229
+ [@stdlib/math/iter/special/sqrt]: https://www.npmjs.com/package/@stdlib/math-iter-special-sqrt
230
+
231
+ <!-- </related-links> -->
232
+
201
233
  </section>
202
234
 
203
235
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/math-iter-special-sqrt1pm1",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Create an iterator which computes `sqrt(1+x) - 1` for each iterated value.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -42,10 +42,10 @@
42
42
  "@stdlib/types": "^0.0.x"
43
43
  },
44
44
  "devDependencies": {
45
+ "@stdlib/array-to-iterator": "^0.0.x",
45
46
  "@stdlib/assert-is-iterator-like": "^0.0.x",
46
47
  "@stdlib/bench": "^0.0.x",
47
48
  "@stdlib/math-base-assert-is-nan": "^0.0.x",
48
- "@stdlib/random-base-uniform": "^0.0.x",
49
49
  "@stdlib/random-iter-uniform": "^0.0.x",
50
50
  "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
51
51
  "istanbul": "^0.4.1",