Skip to content

Commit d30c38f

Browse files
committed
Auto-generated commit
1 parent 0804b13 commit d30c38f

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### Features
1212

13+
- [`66bc5bb`](https://github.com/stdlib-js/stdlib/commit/66bc5bb35ab356d41bf84072b5048663e1fb11c5) - add `chebyshevSeries` to namespace
1314
- [`82aae9b`](https://github.com/stdlib-js/stdlib/commit/82aae9bd2f57896eebb96d48624549c2b622a4fc) - add `math/base/tools/chebyshev-series` [(#11470)](https://github.com/stdlib-js/stdlib/pull/11470)
1415
- [`e196c42`](https://github.com/stdlib-js/stdlib/commit/e196c42d4f901702ffda4f5159b2ecd9141f8384) - add `CCCC_C` macro in `math/base/napi/quaternary` [(#11105)](https://github.com/stdlib-js/stdlib/pull/11105)
1516
- [`71468a6`](https://github.com/stdlib-js/stdlib/commit/71468a6d49a3c0c2ec6173033eacda61bc75ff01) - add `ZZZZ_Z` macro in `math/base/napi/quaternary` [(#9944)](https://github.com/stdlib-js/stdlib/pull/9944)
@@ -728,6 +729,7 @@ A total of 95 issues were closed in this release:
728729

729730
<details>
730731

732+
- [`66bc5bb`](https://github.com/stdlib-js/stdlib/commit/66bc5bb35ab356d41bf84072b5048663e1fb11c5) - **feat:** add `chebyshevSeries` to namespace _(by Athan Reines)_
731733
- [`82aae9b`](https://github.com/stdlib-js/stdlib/commit/82aae9bd2f57896eebb96d48624549c2b622a4fc) - **feat:** add `math/base/tools/chebyshev-series` [(#11470)](https://github.com/stdlib-js/stdlib/pull/11470) _(by anee3, Athan Reines, stdlib-bot)_
732734
- [`7431746`](https://github.com/stdlib-js/stdlib/commit/74317460bcffcf3c766dbdf6d5a6c0ef2bd4516d) - **chore:** fix JavaScript lint errors [(#11339)](https://github.com/stdlib-js/stdlib/pull/11339) _(by Bhumika Sudarshani)_
733735
- [`01a183b`](https://github.com/stdlib-js/stdlib/commit/01a183bd5a72106a0295149de43366d5d5a839bf) - **docs:** update related packages sections [(#11477)](https://github.com/stdlib-js/stdlib/pull/11477) _(by stdlib-bot, Athan Reines)_

base/tools/lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,15 @@ var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
4040
*/
4141
var ns = {};
4242

43+
/**
44+
* @name chebyshevSeries
45+
* @memberof ns
46+
* @readonly
47+
* @type {Function}
48+
* @see {@link module:@stdlib/math/base/tools/chebyshev-series}
49+
*/
50+
setReadOnly( ns, 'chebyshevSeries', require( './../../../base/tools/chebyshev-series' ) );
51+
4352
/**
4453
* @name continuedFraction
4554
* @memberof ns

0 commit comments

Comments
 (0)