@stdlib/math-iter-sequences-continued-fraction 0.1.0 → 0.2.0

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 CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2023 The Stdlib Authors.
1
+ Copyright (c) 2016-2024 The Stdlib Authors.
package/README.md CHANGED
@@ -316,6 +316,12 @@ console.log( 'computed: %d', evaluate( terms ) );
316
316
 
317
317
  <section class="related">
318
318
 
319
+ * * *
320
+
321
+ ## See Also
322
+
323
+ - <span class="package-name">[`@stdlib/math-iter/utils/continued-fraction`][@stdlib/math/iter/utils/continued-fraction]</span><span class="delimiter">: </span><span class="description">evaluate the terms of a continued fraction.</span>
324
+
319
325
  </section>
320
326
 
321
327
  <!-- /.related -->
@@ -346,7 +352,7 @@ See [LICENSE][stdlib-license].
346
352
 
347
353
  ## Copyright
348
354
 
349
- Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
355
+ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
350
356
 
351
357
  </section>
352
358
 
@@ -359,8 +365,8 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
359
365
  [npm-image]: http://img.shields.io/npm/v/@stdlib/math-iter-sequences-continued-fraction.svg
360
366
  [npm-url]: https://npmjs.org/package/@stdlib/math-iter-sequences-continued-fraction
361
367
 
362
- [test-image]: https://github.com/stdlib-js/math-iter-sequences-continued-fraction/actions/workflows/test.yml/badge.svg?branch=v0.1.0
363
- [test-url]: https://github.com/stdlib-js/math-iter-sequences-continued-fraction/actions/workflows/test.yml?query=branch:v0.1.0
368
+ [test-image]: https://github.com/stdlib-js/math-iter-sequences-continued-fraction/actions/workflows/test.yml/badge.svg?branch=v0.2.0
369
+ [test-url]: https://github.com/stdlib-js/math-iter-sequences-continued-fraction/actions/workflows/test.yml?query=branch:v0.2.0
364
370
 
365
371
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/math-iter-sequences-continued-fraction/main.svg
366
372
  [coverage-url]: https://codecov.io/github/stdlib-js/math-iter-sequences-continued-fraction?branch=main
@@ -383,14 +389,23 @@ Copyright &copy; 2016-2023. The Stdlib [Authors][stdlib-authors].
383
389
  [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
384
390
 
385
391
  [deno-url]: https://github.com/stdlib-js/math-iter-sequences-continued-fraction/tree/deno
392
+ [deno-readme]: https://github.com/stdlib-js/math-iter-sequences-continued-fraction/blob/deno/README.md
386
393
  [umd-url]: https://github.com/stdlib-js/math-iter-sequences-continued-fraction/tree/umd
394
+ [umd-readme]: https://github.com/stdlib-js/math-iter-sequences-continued-fraction/blob/umd/README.md
387
395
  [esm-url]: https://github.com/stdlib-js/math-iter-sequences-continued-fraction/tree/esm
396
+ [esm-readme]: https://github.com/stdlib-js/math-iter-sequences-continued-fraction/blob/esm/README.md
388
397
  [branches-url]: https://github.com/stdlib-js/math-iter-sequences-continued-fraction/blob/main/branches.md
389
398
 
390
399
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/math-iter-sequences-continued-fraction/main/LICENSE
391
400
 
392
401
  [@stdlib/constants/float64/eps]: https://www.npmjs.com/package/@stdlib/constants-float64-eps
393
402
 
403
+ <!-- <related-links> -->
404
+
405
+ [@stdlib/math/iter/utils/continued-fraction]: https://www.npmjs.com/package/@stdlib/math-iter-utils-continued-fraction
406
+
407
+ <!-- </related-links> -->
408
+
394
409
  </section>
395
410
 
396
411
  <!-- /.links -->
package/SECURITY.md ADDED
@@ -0,0 +1,5 @@
1
+ # Security
2
+
3
+ > Policy for reporting security vulnerabilities.
4
+
5
+ See the security policy [in the main project repository](https://github.com/stdlib-js/stdlib/security).
@@ -79,7 +79,7 @@ interface Options {
79
79
  * var bool = iter.next().done;
80
80
  * // returns true
81
81
  */
82
- declare function iterContinuedFractionSeq( x: number, options?: Options ): Iterator; // tslint:disable-line:max-line-length
82
+ declare function iterContinuedFractionSeq( x: number, options?: Options ): Iterator;
83
83
 
84
84
 
85
85
  // EXPORTS //
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/math-iter-sequences-continued-fraction",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Create an iterator which generates a list of all continued fraction terms which can be obtained given the precision of a provided number.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -37,30 +37,31 @@
37
37
  "url": "https://github.com/stdlib-js/stdlib/issues"
38
38
  },
39
39
  "dependencies": {
40
- "@stdlib/assert-has-own-property": "^0.1.0",
41
- "@stdlib/assert-is-finite": "^0.1.0",
42
- "@stdlib/assert-is-nonnegative-integer": "^0.1.0",
43
- "@stdlib/assert-is-plain-object": "^0.1.0",
44
- "@stdlib/constants-float64-eps": "^0.1.0",
45
- "@stdlib/math-base-special-abs": "^0.1.0",
46
- "@stdlib/math-base-special-floor": "^0.1.0",
47
- "@stdlib/string-format": "^0.1.0",
48
- "@stdlib/symbol-iterator": "^0.1.0",
49
- "@stdlib/types": "^0.1.0",
50
- "@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.0",
51
- "@stdlib/utils-fifo": "^0.1.0",
52
- "@stdlib/error-tools-fmtprodmsg": "^0.1.0"
40
+ "@stdlib/assert-has-own-property": "^0.1.1",
41
+ "@stdlib/assert-is-finite": "^0.2.0",
42
+ "@stdlib/assert-is-nonnegative-integer": "^0.2.0",
43
+ "@stdlib/assert-is-plain-object": "^0.2.0",
44
+ "@stdlib/constants-float64-eps": "^0.2.0",
45
+ "@stdlib/math-base-special-abs": "^0.2.0",
46
+ "@stdlib/math-base-special-floor": "^0.2.0",
47
+ "@stdlib/string-format": "^0.2.0",
48
+ "@stdlib/symbol-iterator": "^0.2.0",
49
+ "@stdlib/types": "^0.3.1",
50
+ "@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
51
+ "@stdlib/utils-fifo": "^0.2.0",
52
+ "@stdlib/error-tools-fmtprodmsg": "^0.1.1"
53
53
  },
54
54
  "devDependencies": {
55
- "@stdlib/assert-is-array": "^0.1.0",
56
- "@stdlib/assert-is-iterator-like": "^0.1.0",
57
- "@stdlib/bench": "^0.1.0",
58
- "@stdlib/constants-float64-pi": "^0.1.0",
59
- "@stdlib/math-base-assert-is-nan": "^0.1.0",
55
+ "@stdlib/assert-is-array": "^0.1.1",
56
+ "@stdlib/assert-is-iterator-like": "^0.2.0",
57
+ "@stdlib/constants-float64-pi": "^0.1.1",
58
+ "@stdlib/math-base-assert-is-nan": "^0.1.1",
60
59
  "proxyquire": "^2.0.0",
61
60
  "tape": "git+https://github.com/kgryte/tape.git#fix/globby",
62
61
  "istanbul": "^0.4.1",
63
- "tap-min": "git+https://github.com/Planeshifter/tap-min.git"
62
+ "tap-min": "git+https://github.com/Planeshifter/tap-min.git",
63
+ "@stdlib/bench-harness": "^0.2.0",
64
+ "@stdlib/bench": "^0.3.1"
64
65
  },
65
66
  "engines": {
66
67
  "node": ">=0.10.0",
package/CITATION.cff DELETED
@@ -1,30 +0,0 @@
1
- cff-version: 1.2.0
2
- title: stdlib
3
- message: >-
4
- If you use this software, please cite it using the
5
- metadata from this file.
6
-
7
- type: software
8
-
9
- authors:
10
- - name: The Stdlib Authors
11
- url: https://github.com/stdlib-js/stdlib/graphs/contributors
12
-
13
- repository-code: https://github.com/stdlib-js/stdlib
14
- url: https://stdlib.io
15
-
16
- abstract: |
17
- Standard library for JavaScript and Node.js.
18
-
19
- keywords:
20
- - JavaScript
21
- - Node.js
22
- - TypeScript
23
- - standard library
24
- - scientific computing
25
- - numerical computing
26
- - statistical computing
27
-
28
- license: Apache-2.0 AND BSL-1.0
29
-
30
- date-released: 2016