File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -84,6 +84,8 @@ A total of 4 issues were closed in this release:
8484
8585<details>
8686
87+ - [`f6e6298`](https://github.com/stdlib-js/stdlib/commit/f6e629859db6d74f91097f8015c9e70514c29d88) - **refactor:** rename internal variable [(#13089)](https://github.com/stdlib-js/stdlib/pull/13089) _(by Philipp Burckhardt)_
88+ - [`e404167`](https://github.com/stdlib-js/stdlib/commit/e404167cf935b4a7a0fbee91b1d25734409cb235) - **refactor:** reorder import statements [(#13078)](https://github.com/stdlib-js/stdlib/pull/13078) _(by stdlib-bot)_
8789- [`fb7ba7a`](https://github.com/stdlib-js/stdlib/commit/fb7ba7aa301480bcab339b75cc7562966292e365) - **docs:** update namespace table of contents [(#13079)](https://github.com/stdlib-js/stdlib/pull/13079) _(by stdlib-bot)_
8890- [`dadabba`](https://github.com/stdlib-js/stdlib/commit/dadabba66e44060c40b231ebf1862aa0453e5285) - **chore:** resolve C compiler warnings _(by Athan Reines)_
8991- [`fa820b3`](https://github.com/stdlib-js/stdlib/commit/fa820b3ef9805587eae34c589ee0cd91f89de1b2) - **chore:** resolve C compiler warning _(by Athan Reines)_
Original file line number Diff line number Diff line change 3838
3939// MODULES //
4040
41- var mean = require ( './main.js' ) ;
41+ var main = require ( './main.js' ) ;
4242
4343
4444// EXPORTS //
4545
46- module . exports = mean ;
46+ module . exports = main ;
Original file line number Diff line number Diff line change 3838
3939// MODULES //
4040
41- var mode = require ( './main.js' ) ;
41+ var main = require ( './main.js' ) ;
4242
4343
4444// EXPORTS //
4545
46- module . exports = mode ;
46+ module . exports = main ;
Original file line number Diff line number Diff line change @@ -29,9 +29,9 @@ import dcumin = require( './../../../strided/dcumin' );
2929import dcuminabs = require( './../../../strided/dcuminabs' ) ;
3030import distances = require( './../../../strided/distances' ) ;
3131import dmax = require( './../../../strided/dmax' ) ;
32+ import dmaxSorted = require( './../../../strided/dmax-sorted' ) ;
3233import dmaxabs = require( './../../../strided/dmaxabs' ) ;
3334import dmaxabsSorted = require( './../../../strided/dmaxabs-sorted' ) ;
34- import dmaxSorted = require( './../../../strided/dmax-sorted' ) ;
3535import dmean = require( './../../../strided/dmean' ) ;
3636import dmeankbn = require( './../../../strided/dmeankbn' ) ;
3737import dmeankbn2 = require( './../../../strided/dmeankbn2' ) ;
You can’t perform that action at this time.
0 commit comments