We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
utils/some
1 parent 0fd4f45 commit 4ea59e9Copy full SHA for 4ea59e9
lib/node_modules/@stdlib/utils/some/benchmark/benchmark.js
@@ -22,6 +22,7 @@
22
23
var bench = require( '@stdlib/bench' );
24
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
25
+var format = require( '@stdlib/string/format' );
26
var pkg = require( './../package.json' ).name;
27
var some = require( './../lib' );
28
@@ -49,7 +50,7 @@ bench( pkg, function benchmark( b ) {
49
50
b.end();
51
});
52
-bench( pkg+'::loop', function benchmark( b ) {
53
+bench( format( '%s::loop', pkg ), function benchmark( b ) {
54
var total;
55
var count;
56
var bool;
0 commit comments