File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
lib/node_modules/@stdlib/strided/base/binary-signature-callbacks/benchmark Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ var signatures = require( '@stdlib/strided/base/binary-dtype-signatures' );
2727var cadd = require ( '@stdlib/complex/float64/base/add' ) ;
2828var caddf = require ( '@stdlib/complex/float32/base/add' ) ;
2929var add = require ( '@stdlib/number/float64/base/add' ) ;
30+ var format = require ( '@stdlib/string/format' ) ;
3031var pkg = require ( './../package.json' ) . name ;
3132var callbacks = require ( './../lib' ) ;
3233
@@ -42,7 +43,7 @@ var TABLE = {
4243
4344// MAIN //
4445
45- bench ( pkg + ' ::strings', function benchmark ( b ) {
46+ bench ( format ( '%s ::strings', pkg ) , function benchmark ( b ) {
4647 var sigs ;
4748 var out ;
4849 var v1 ;
@@ -72,7 +73,7 @@ bench( pkg+'::strings', function benchmark( b ) {
7273 b . end ( ) ;
7374} ) ;
7475
75- bench ( pkg + ' ::enums', function benchmark ( b ) {
76+ bench ( format ( '%s ::enums', pkg ) , function benchmark ( b ) {
7677 var sigs ;
7778 var out ;
7879 var v1 ;
You can’t perform that action at this time.
0 commit comments