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-by
1 parent 4ea59e9 commit 337cd19Copy full SHA for 337cd19
lib/node_modules/@stdlib/utils/some-by/benchmark/benchmark.js
@@ -23,6 +23,7 @@
23
var bench = require( '@stdlib/bench' );
24
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
25
var isnan = require( '@stdlib/math/base/assert/is-nan' );
26
+var format = require( '@stdlib/string/format' );
27
var pkg = require( './../package.json' ).name;
28
var someBy = require( './../lib' );
29
@@ -54,7 +55,7 @@ bench( pkg, function benchmark( b ) {
54
55
b.end();
56
});
57
-bench( pkg+'::loop', function benchmark( b ) {
58
+bench( format( '%s::loop', pkg ), function benchmark( b ) {
59
var total;
60
var count;
61
var bool;
0 commit comments