Skip to content

Commit 9e1a84e

Browse files
committed
Auto-generated commit
1 parent 9841513 commit 9e1a84e

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
### Closed Issues
1212

13-
A total of 2 issues were closed in this release:
13+
A total of 3 issues were closed in this release:
1414

15-
[#8244](https://github.com/stdlib-js/stdlib/issues/8244), [#9792](https://github.com/stdlib-js/stdlib/issues/9792)
15+
[#8244](https://github.com/stdlib-js/stdlib/issues/8244), [#9792](https://github.com/stdlib-js/stdlib/issues/9792), [#9792](https://github.com/stdlib-js/stdlib/issues/9792)
1616

1717
</section>
1818

@@ -24,6 +24,7 @@ A total of 2 issues were closed in this release:
2424

2525
<details>
2626

27+
- [`86031ac`](https://github.com/stdlib-js/stdlib/commit/86031ace3c539a7bc339082990d9896abde895d4) - **chore:** fix JavaScript lint errors [(#9801)](https://github.com/stdlib-js/stdlib/pull/9801) _(by Suyash Pathak)_
2728
- [`be2d13e`](https://github.com/stdlib-js/stdlib/commit/be2d13ea3b0b13e51fbc9a51a0788b03d1eb3618) - **chore:** fix JavaScript lint errors [(#9796)](https://github.com/stdlib-js/stdlib/pull/9796) _(by 가은 정)_
2829
- [`61dddeb`](https://github.com/stdlib-js/stdlib/commit/61dddeb7d3bddb33aa7d60fb692baf43ec8f462d) - **chore:** remove unused ESLint directives from `@stdlib/assert` examples [(#8248)](https:-/github.com/stdlib-js/stdlib/pull/8248) _(by youzi-forge)_
2930
- [`11581aa`](https://github.com/stdlib-js/stdlib/commit/11581aaca8c3cb824cbb92c0c0f80e76890bdb20) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
@@ -40,9 +41,10 @@ A total of 2 issues were closed in this release:
4041

4142
### Contributors
4243

43-
A total of 3 people contributed to this release. Thank you to the following contributors:
44+
A total of 4 people contributed to this release. Thank you to the following contributors:
4445

4546
- Philipp Burckhardt
47+
- Suyash Pathak
4648
- youzi-forge
4749
- 가은 정
4850

benchmark/benchmark.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
2525
var pow = require( '@stdlib/math-base-special-pow' );
26+
var format = require( '@stdlib/string-format' );
2627
var Number = require( '@stdlib/number-ctor' );
2728
var pkg = require( './../package.json' ).name;
2829
var isNegativeIntegerArray = require( './../lib' );
@@ -106,13 +107,13 @@ function main() {
106107
len = pow( 10, i );
107108

108109
f = createBenchmark( isNegativeIntegerArray, len, false );
109-
bench( pkg+':len='+len, f );
110+
bench( format( '%s:len=%d', pkg, len ), f );
110111

111112
f = createBenchmark( isNegativeIntegerArray.primitives, len, true );
112-
bench( pkg+':primitives:len='+len, f );
113+
bench( format( '%s:primitives:len=%d', pkg, len ), f );
113114

114115
f = createBenchmark( isNegativeIntegerArray.objects, len, false );
115-
bench( pkg+':objects:len='+len, f );
116+
bench( format( '%s:objects:len=%d', pkg, len ), f );
116117
}
117118
}
118119

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"@stdlib/assert-is-boolean": "^0.2.2",
4747
"@stdlib/math-base-special-pow": "^0.3.0",
4848
"@stdlib/number-ctor": "^0.2.2",
49+
"@stdlib/string-format": "^0.2.2",
4950
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5051
"istanbul": "^0.4.1",
5152
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

0 commit comments

Comments
 (0)